I am given two statements. Letting
$s(x)$ denote "$x$ is a car" and $h(x)$ denote "$x$ is manual"
I have to formalise the following statements:
- "Some car is manual"
Which I think can be denoted as $\exists x\; (s(x) \land h(x))$, but I'm unsure if this is the correct way to put the two statements together.
"Not all cars are manual"
"All cars are automatic"
"There is an automatic car"
"Every car is manual"
$\checkmark$ Yes. Literally this is "There exists a thing: it is a car and it is manual." This is indeed "Some car is manual."
Just do it one bit at a time. "Not"~"$\neg$", "all"~"$\forall x$" , "cars are"~"$s(x)\to$" , "manual"~"$h(x)$". $$\neg\forall x\big(s(x)\to h(x)\big)$$
"Not (every thing: if it is a car, then it is manual)."
Key point: remember that
Can you try your hand at the rest?