I've found here (first answer) this expression: $\mathbb{Z}\left[\sqrt{3}\right]$, where $\mathbb{Z}$ stands for the set of integers. What is the meaning of the expression?
5 Answers
$$\mathbb Z[X]=\{a_0+a_1X+a_2X^2+...\mid a_i\in\mathbb Z\}$$ then $$\mathbb Z[\sqrt 3]=\{a_0+a_1\sqrt{3}+a_2\sqrt{3}^2+a_3\sqrt{3}^3+...\mid a_i\in\mathbb Z\}=\{\underbrace{(a_0+3a_2+9a_4+...)}_{\in\mathbb Z}+\sqrt{3}\underbrace{(a_1+3a_3+9a_5+...)}_{\in\mathbb Z}\mid a_i\in\mathbb Z\}$$ $$=\{a+\sqrt 3 b\mid a,b\in\mathbb Z\}$$

- 55,662
-
1Technically, $\mathbb{Z}[X]$ are the polynomials which implies finitely many nonzero terms in the polynomial. Should put a final term on the summation. $\mathbb{Z}[![X]!]$ is the formal power series where you can have infinitely many terms. – JMoravitz Nov 06 '15 at 15:34
-
1It's true, but it's may be easier to visualize it like that... But your comment is totally legitimate, and it's important to precise it. – Surb Nov 06 '15 at 15:38
-
I've chosen JMoravitz's answer for its completeness, but yours too is exemplary clear. – Lo Scrondo Nov 06 '15 at 16:56
If you have a commutative ring $R$, and an element $\alpha$ which might not necessarily be in the ring $R$, the symbol $R[\alpha]$ will denote the set of elements of the form:
$r_0+r_1\alpha+r_2\alpha^2+r_3\alpha^3+\dots+r_k\alpha^k$
where each $r_i$ is an element of your ring $R$.
In your specific example, it would be elements of the form $z_0+z_1\sqrt{3}+z_2(\sqrt{3})^2+\dots+z_k(\sqrt{3})^k$, but notice that $\sqrt{3}$ to an even power is just an integer, so it simplifies to simply being an element of the form $a+b\sqrt{3}$.
Other important related concepts are the polynomial ring, where instead of a specific element, you use an unknown. $R[x]=\{r_0+r_1x+r_2x^2+\dots+r_kx^k~:~r_i\in R,~k\in\mathbb{N}\}$ where each polynomial has only finitely many nonzero terms.
Also of interest is $R[\![x]\!]=\{\sum\limits_{i=0}^\infty r_ix_i~:~r_i\in R\}$, the formal power series where we instead allow infinitely many nonzero terms.

- 79,518
-
2Doesn't $R(x)$ typically also include things like $(x-1)^{-1}$, which can't be written as a sum of possibly-negative powers of $x$? – Ben Millwood Nov 06 '15 at 15:44
-
@BenMillwood I looked through my collection of algebra books and am doubting myself on that now as well. If you can provide a reference, I will be grateful, but at the moment I cannot find a definition for $R(x)$ for $R$ a generic commutative ring, only for $F(x)$ with $F$ a field. I did find in Dummit&Foote $R(!(x)!) = {\sum\limits_{i=k}^\infty r_i x^i~:~k\in\mathbb{Z}}$ the formal Laurent Series, which seems to mimic the interpretation I had, being the analogue to $R(x)$ as $R[![x]!]$ is to $R[x]$. – JMoravitz Nov 06 '15 at 16:36
-
It is the image of the ring of polynomials $\mathbf Z[X]$ under tha mappting \begin{align*} \mathbf Z&\longrightarrow \mathbf C\\ p(x)&\longmapsto p(\sqrt 3) \end{align*} As $(\sqrt3)^2=3$, all such $p(\sqrt 3)$ can be ultimately written in the form $\;a+b\sqrt3\enspace (a,b\in\mathbf Z)$.
Its field of fractions is $\;\mathbf Q[\sqrt 3]=\bigl\{a+b\sqrt3\mid a,b\in\mathbf Q\bigr\}$. It is indeed a field since one checks $$(a+b\sqrt3)^{-1}=\frac{a-b\sqrt3}{a^2-3b^2}.$$

- 175,478
This is a ring of integers, augmented with an additional value $\sqrt{3}$.

- 54,422
-
2Thank you for answering. Please forgive me if I ask for a clarification: what does "augmented" mean? That every member of the ring of integers would be multiplied by $√3$? – Lo Scrondo Nov 06 '15 at 15:30
-
1$\mathbb{Z}\left[\sqrt{3}\right]=\left{z_{1}+z_{2}\sqrt{3},\vert,(z_{1},z_{2})\in\mathbb{Z}^{2}\right}$ – MoebiusCorzer Nov 06 '15 at 15:32
We have an (abstractly given) field extension $\mathbb{Q}(\sqrt{3}) = \frac{\mathbb{Q}[x]}{\langle x^2 - 3 \rangle}$. By identifying $\mathbb{Q}$ with its image under the map $$ \mathbb{Q} \hookrightarrow \mathbb{Q}[x] \to \frac{\mathbb{Q}[x]}{\langle x^2 - 3 \rangle} $$ we can consider $\mathbb{Q} \subseteq \mathbb{Q}(\sqrt{3})$. Then $\mathbb{Z}[\sqrt{3}]$ is defined as the smallest (by inclusion) subring $R \subseteq \mathbb{Q}(\sqrt{3})$ containing $\mathbb{Z}$ and $\sqrt{3}$ (where again we identify $\mathbb{Z}$ with its image in $\mathbb{Q}(\sqrt{3})$). As other answers have stated, one can show that any element of $\mathbb{Z}[\sqrt{3}]$ is of the form $a + b \sqrt{3}$ with $a,b \in \mathbb{Z}$.

- 19,278