1

I have the following Problem.

Be $\sigma=\{G, \cdot\}$ a signature in which $G$ is a digit relations symbol and $\cdot$ two-digit function symbol. Be $\mathcal{A}=\left(\mathbb{Z}, G^{\mathcal{A}},\cdot^{\mathcal{A}}\right)$ a $\sigma$-structure in which $G^{\mathcal{A}}=\{2 x | x \in \mathbb{Z}\}$ and $\cdot^\mathcal{A}$ is the normal integer multiplication.

Give a formula for $\varphi_{1},\varphi_{2}$ and $\varphi_{3}$ so that

$(i) \varphi_{1}(\mathcal{A})=\{1\}$

(ii) $\varphi_{2}(\mathcal{A})=\{-1\}$

(iii) $\varphi_{3}(\mathcal{A})=\left\{s 2^{k} | k \in \mathbb{N} \text { und } s \in\{1,-1\}\right\}$

Now I want to know three things: First, is my solution correct.

$(i) \varphi_{1}(x) = \forall{y}(x \cdot y = y)$

$(ii) \varphi_{2}(x) = \exists{y}(x \cdot x = y \wedge \varphi_{1}(y))$

$(iii) \varphi_{3}(x) = \exists{y} \exists{z}(y * G(z) = x \wedge (\varphi_{1}(y) \vee \varphi_{2}(y)))$

Second, is $(ii) \varphi_{2}(x) = \exists{y}(x \cdot x = \varphi_{1}(y))$ also ok ?

Third, if everything is wrong, what how could I change it, to be correct, are there any tricks?

philipa
  • 25

1 Answers1

1

The comments have dealt with (i) and (ii). For (iii), an integer has the form $\pm 2^k$ iff all its divisors are either units or even:

$$\varphi_3(x) \equiv \forall y\forall z(x = y \cdot z \Rightarrow (\varphi_1(y) \lor \varphi_2(y)\lor G(y)))$$

or, equivalently, iff all its odd divisors are units:

$$\varphi_3(x) \equiv \forall y\forall z((x = y \cdot z \land \lnot G(y)) \Rightarrow (\varphi_1(y) \lor \varphi_2(y)))$$

EDIT [Added for the record much later]

Your proposed solution for (ii) has the main idea but isn't quite right: your $\varphi_2(x)$ is true when $x=1$ as well as when $x = -1$. This is easy to fix (and we can also get rid of the existential quantification, because we only need to talk about $x$ and $x\cdot x$): we make $\phi_2(x)$ assert that $x \cdot x$ is $1$ but $x$ is not $1$:

$$ \varphi_2(x) \equiv \phi_1(x\cdot x) \land \lnot\phi_1(x) $$

Rob Arthan
  • 48,577