prove any number bigger than 1 is prime if and only if it is not composite?
Prime(n) = (n>1) \[And] (\[ForAll]m.(m\[VerticalSeparator]n) ->(m=1) \[Or] (m=n))
Composite(n) = \[Exists]a,b.(a<n) \[And] (b<n) \[And] (n = a\[CenterDot]b)
(x\[VerticalSeparator]y) -> x<y
1. \[ForAll]n.[((n>1)\[And]Prime(n))->\[Not]Composite(n)]
2. \[ForAll]n.[((n>1)\[And]\[Not]Composite(n))->Prime(n)]
Ok just to clarify a little, this can NOT be proved by just plugging in numbers and showing that this is prime and that is composite. This has to be proved in mathematical (or rather logical) terminology. We are supposed to use The definitions included in the description ^^^ and show that
1. If n>1 and it is Prime, then it is NOT composite
2. If n>1 and is NOT composite, then it is Prime
Thanks guys