2

I would like to know how to prove that $\mathbb C$ is a field, $( \mathbb C, +, \times)$

I have found out that the additive identity is $0_\mathbb C=0=0+0i$,

multiplicative identity is $1_\mathbb C = 1+0i=1$,

additive inverses $-(x+iy)=(-x)+i(-y)$

and multiplicative inverses $(x+iy)^{-1}:=\frac{x}{x^{2}+y^{2}}+ i(\frac{-y}{x^2+y^2})$

but after many hours of research online i cannot find a proof of this or how to get to these additive/multiplicative identities and inverses. Please could someone show me how to do this, I have only ever looks at finite sets within a field and not the whole set of complex numbers and none of my complex analysis books use an axiomatic approach to this subject.

Many thanks for your help

  • You are presumably using some definition of what $+$ and $\times$ mean on $\Bbb C$; you can use those definitions to show they satisfy your field axioms. (For instance if you're using the def that $(a+bi)(c+di)=(ac-bd)+(ad+bc)i$, then use that to show that $1_{\Bbb C}$ is a multiplicative identity.) – tabstop Feb 10 '14 at 00:05
  • It is enough to just show the intended property. To start from scratch (for example, additive identity), you need to find which complex number $a+bi$ has the property that $(x+iy)+(a+bi)=x+iy$ for any $x+iy\in\mathbb{C}$. A little bit of algebra goes a long way. – David P Feb 10 '14 at 00:06
  • For a proof without computations, note $\Bbb C \simeq \Bbb R[X]/(X^2+1)$, and $X^2+1$ is irreducible over $\Bbb R$. – Pedro Feb 10 '14 at 00:08
  • @PedroTamaroff Notation doesn't create content. You would need to prove the isomorphism (Euclid's algorithm, i.e. compute), prove the irreducibility (i.e. use the order of $\mathbb{R}$ to show $x^2+1\neq0$ for real $x$, more computation), prove that the quotient by an irreducible gives you a field (further compute), etc... –  Feb 10 '14 at 00:32
  • @PLKTU Sure, one assumes some things proven. But certain computations are more far reaching than others, and that's the point of my comment. – Pedro Feb 10 '14 at 00:35

3 Answers3

2

To show that it is a field, you need to show that these elements you listed really do what they're supposed to do. For example, you note that $1$ is your multiplicative identity. To show that this is true, you have to verify that if you multiply that number by any complex number $z$, the product is $z$. Similarly, each of these complex numbers you list has to satisfy the appropriate property.

Do that for each field axiom, and you have your proof.

For example, here's what you might write down for the additive inverse axiom:

"The element $0+0i\in\mathbb{C}$ is an additive identity: Taking any other $a+bi\in\mathbb{C}$, we see that

$(0+0i)+(a+bi) = (0+a)+(0+b)i = a+bi$

Thus, $\mathbb{C}$ has an identity for addition."

It's mostly about verifying that the definitions of complex addition and multiplication give rise to operations that do what addition and multiplication are supposed to do, and the work hardly feels like you're doing anything, which can be weird at first.

Does that help?

G Tony Jacobs
  • 31,218
1

This proof is simply and eloquently furnished in Walter Rudin's Principles of Mathematical Analysis, pp 5-13, with the meat of the proof on the last two pages.

I won't reproduce the entire proof here. It suffices to show that $\mathbb C$ satisfies the field axioms, which is easy once it is established that $\mathbb R$ is a field.

The field axioms, as given by Rudin, are as follows. $F$ is a field if:

  1. (additive closure) If $x \in F$ and $y \in F$, then their sum $x+y$ is in $F$.
  2. (additive commutativity) $x + y = y + x$ for all $x, y \in F$.
  3. (additive associativity) $(x + y) + z = x + (y + z)$ for all $x, y, z \in F$.
  4. (additive identity) $F$ contains an element $0$ such that $0 + x = x$ for every $x \in F$.
  5. (additive inverse) To every $x \in F$ there corresponds an element $-x \in F$ such that $x + (-x) = 0$.

  6. (multiplicative closure) If $x \in F$ and $y \in F$, then their product $xy$ is in $F$.

  7. (multiplicative commutativity) $xy = yx$ for all $x, y \in F$.
  8. (multiplicative associativity) $(xy)z = x(yz)$ for all $x,y,z \in F$.
  9. (multiplicative identity) $F$ contains an element $1 \ne 0$ such that $1x = x$ for all $x \in F$.
  10. (multiplicative inverse) If $x \in F$ and $x \ne 0$ then there exists an element $1/x \in F$ such that $x \cdot (1/x) = 1$.

  11. (Distributive law) $x(y+z) = xy + xz$ for all $x, y, z \in F$.

Then the complex numbers are defined as follows: A complex number is an ordered pair $x = (a,b)$ of real numbers $a, b \in \mathbb R$ such that the following hold:

  1. If $x = (a,b)$ and $y = (c,d)$, then $x = y$ if and only if $a = c$ and $b = d$.
  2. (complex addition) $x + y = (a+c, b+d)$.
  3. (complex multiplication) $x \cdot y = (ac - bd, ad + bc)$.

Then go through and check each of the axioms. For example, Rudin proves the distributive law by writing $$\begin{align*} x(y+z) &= (a,b)(c+e,d+f) \\ &= (ac + ae - bd - bf, ad + af + bc + be) \\ &= (ac - bd, ad + bc) + (ae - bf, af + be) \\ &= xy + xz. \end{align*}$$

heropup
  • 135,869
0

To find the additive inverse, just look at the definiton. For the multiplicative inverse note that for $z=x+iy, \bar z = x-iy$ you have $$x^2+y^2 = |z|^2 = z\bar z$$ and thus $$z^{-1} = \frac1z = \frac{\bar z}{z\bar z} = \frac1{|z|^2} \bar z = \frac1{x^2+y^2}(x-iy)$$ as claimed.

AlexR
  • 24,905
  • thanks very much! makes complete sense, i have looked at the definition lots but a bit confused about how to lay it out and notation.. Im used to group axioms not field axioms.. – Bernard.Mathews Feb 10 '14 at 00:14