So I've seen simpler logic statements that are translated into English, but for this one, how exactly could this be represented?
"For any positive number, there exists a second number, the square of which is equal to the first number."
In predicate logic, could you add exponents? Something like this?
$$(\forall A) \,\,(\exists B) \,\,B^2 \equiv A$$
Given that $A$ is the first integer and $B$ is the second. Or do they even need to be 2 separate variables?
$\forall a: \forall b: [N(a) \land N(b) \implies [S(a,b) \iff M(a,a,b)]] $
Where the predicates $N,M$ and $S$ can be interpreted as follows:
$~~~~~N(x)~~~~~~~~~~\equiv ~~$"$x$ is a number"
$~~~~~M(x,y,z)~~\equiv~~ x\cdot y =z$
$~~~~~S(x,y)~~~~~~~\equiv ~~ x\cdot x = y$