To solve x2+1=0, we invent a symbol i with i2=−1, and form new numbers a+bi where a,b are real. These are the complex numbers. Once you accept the single rule i2=−1, the algebra is identical to the algebra of polynomials in i.
Definitions
The imaginary unit is i, characterised by
i2=−1.
A complex number is an expression of the form
z=a+bi,a,b∈R.
We call a=Re(z) the real part and b=Im(z) the imaginary part. (Note: the imaginary part is the real number b, not bi.) The set of all complex numbers is denoted C.
Equality.a+bi=c+di⟺a=c and b=d.
A complex number with b=0 is a real number. A complex number with a=0 and b=0 is purely imaginary.
The four arithmetic operations
For z1=a+bi and z2=c+di:
Addition: z1+z2=(a+c)+(b+d)i.
Subtraction: z1−z2=(a−c)+(b−d)i.
Multiplication: distribute and use i2=−1:
(a+bi)(c+di)=ac+adi+bci+bd⋅i2=(ac−bd)+(ad+bc)i.
Division: multiply numerator and denominator by the conjugate of the denominator. To compute c+dia+bi (with c+di=0):
c+dia+bi=(c+di)(c−di)(a+bi)(c−di)=c2+d2(ac+bd)+(bc−ad)i.
Powers of i
i1=i,i2=−1,i3=−i,i4=1,i5=i,…
The pattern has period 4. In general in=inmod4.
Algebraic structure
C is a field: addition and multiplication are commutative, associative, distributive, and every non-zero element has a multiplicative inverse. So all the algebraic moves you know , collecting like terms, factoring, distributing , work in C just as in R.
One difference: C is not ordered. There is no notion of "z1<z2" between complex numbers. The relations <,>,≤,≥ apply only to real numbers.
Worked examples
Example 1. Simplify (3+2i)+(5−4i).
(3+5)+(2−4)i=8−2i.
Example 2. Compute (2+3i)(1−4i).
2⋅1+2⋅(−4i)+3i⋅1+3i⋅(−4i)=2−8i+3i+12=14−5i.
Example 3. Find 1−i1+i.
Multiply by 1+i1+i:
(1−i)(1+i)(1+i)2=1+11+2i−1=22i=i.
Example 4. Compute i2025.
2025=4⋅506+1, so i2025=i1=i.
Example 5 (harder). Find real numbers a,b such that (a+bi)2=5−12i.
Expanding: a2−b2+2abi=5−12i. So a2−b2=5 and 2ab=−12, giving ab=−6.
From ab=−6: b=−6/a. Substitute: a2−36/a2=5, so a4−5a2−36=0. Let u=a2: u2−5u−36=0, u=25±25+144=25±13. So u=9 or u=−4. Since a is real, u=9, a=±3.
If a=3: b=−2. If a=−3: b=2. So a+bi=3−2i or −3+2i.
Try it yourself
Simplify (4+5i)−(2−3i).
Multiply (1+2i)(3+4i).
Find i50.
Compute 1+i2−3i.
Solve z+(3+2i)=5−i for z.
Find real numbers x,y such that (x+iy)(2+3i)=8+i.
Compute (1+i)4.
Find 2+3i1.
Express 1+i(1−i)2 in a+bi form.
Compute i+i2+i3+⋯+i100.
If z=3+4i, compute z2, z1, z⋅z1.
Find i (in a+bi form).
Pitfalls / Tricks
i=−1 is a symbol, not a real number. Many calculator-style mistakes come from treating i as if it were ±1 in some clever way.
The rule ab=abfails if both a,b are negative. E.g. −2−3=6; it equals −6.
C is not ordered: writing "2+3i>1" is meaningless.
Insight. Every complex computation reduces to: distribute, use i2=−1, collect real and imaginary parts. There is no other technique.