suppose that the domain of variable x is the set of people, and f(x) = "x is friendly" , t(x)= "x is tall" and a(x) = "x is angry". Write the statement using these predicates and any needed quantifiers.
1) some people are not angry
2) all tall people are friendly
3) No friendly people are angry
My solutions:
1) $∃x\sim A(x)$
2) $∀xF(x)$
3) $\sim ∀x A(x)$
I'd like to know if my answers are right or wrong.
Your first one is correct.
Your second statement is saying, "all people are friendly" and your third one doesn't make sense since $\neg\forall A(x)$ doesn't mean anything.
Your second one should be $\forall x (t(x)\implies f(x))$ and your third one should be $\forall x (f(x)\implies \neg a(x)$ or $\neg \exists x(f(x)\land a(x))$.