This exercise covers three key skills for working with polynomials and equations over C:
- Factorizing polynomials into linear factors over C
- Solving quadratic equations by completing the square
- Solving simultaneous linear equations with complex coefficients
Every polynomial can be factorized into linear factors over C (Fundamental Theorem of Algebra).
Using i2=−1, a sum of squares becomes a difference of squares:
z2+a2=z2−(ai)2=(z+ai)(z−ai)
Example: Factorize 3z2+363
3z2+363=3(z2+121)=3(z2−(11i)2)=3(z+11i)(z−11i)
To factorize a cubic P(z)=z3+bz2+cz+d:
- Use the Factor Theorem: test divisors of the constant term d to find z=k such that P(k)=0. Then (z−k) is a factor.
- Perform synthetic division to reduce to a quadratic.
- Factorize the quadratic (using the quadratic formula if needed).
Example: Factorize z3−7z+6
- Test z=1: 1−7+6=0 ✓ → (z−1) is a factor
- Synthetic division gives: z3−7z+6=(z−1)(z2+z−6)
- Factorize quadratic: z2+z−6=(z+3)(z−2)
- Result: (z−1)(z+3)(z−2)
For pz2+qz+r=0 where p,q,r∈R:
Method:
- Divide through by p (if p=1)
- Move the constant to the right side
- Add (2pq)2 to both sides
- Write the left side as a perfect square
- Take square roots (both ±), allowing complex values
Example: Solve z2−6z+2=0
z2−6z=−2
z2−6z+9=−2+9
(z−3)2=7
z−3=±7
z=3±7
Example: Solve z2+4z+13=0
z2+4z=−13
(z+2)2=−13+4=−9
z+2=±−9=±3i
z=−2±3i
Key insight: When the discriminant b2−4ac<0, the roots are complex conjugates of each other.
The standard methods (substitution, elimination) apply, but we must handle complex arithmetic carefully.
If a term has i in the denominator, multiply numerator and denominator by i:
i3=i⋅i3⋅i=−13i=−3i
More generally, to divide by a complex number a+bi, multiply by its conjugate a−bi:
a+bi1=a2+b2a−bi
z+iw=2(1)
iz−w=3(2)
Step 1: From equation (1): z=2−iw
Step 2: Substitute into (2):
i(2−iw)−w=3
2i−i2w−w=3
2i+w−w=3(since i2=−1)
Wait — let's redo carefully:
2i−i2w−w=3⇒2i+w−w=3
Actually: −i2w−w=w−w=0... Let's use elimination instead.
Elimination method:
Multiply (1) by i: iz+i2w=2i⇒iz−w=2i
Subtract from (2): (iz−w)−(iz−w)=3−2i...
Multiply equation (1) by i:
iz−w=2i(1′)
Equation (2) is: iz−w=3
Subtracting (1') from (2): 0=3−2i — contradiction, so let's use the original correctly.
Correct approach — substitution:
From (2): w=iz−3
Substitute into (1): z+i(iz−3)=2
z+i2z−3i=2
z−z−3i=2
−3i=2
This system is inconsistent for these specific values. For a consistent example:
Example: Solve (1−i)z+(1+i)w=3 and (1+i)z+(1−i)w=1+2i
Add the two equations:
[(1−i)+(1+i)]z+[(1+i)+(1−i)]w=4+2i
2z+2w=4+2i
z+w=2+i(∗)
Subtract equation 2 from equation 1:
[(1−i)−(1+i)]z+[(1+i)−(1−i)]w=2−2i
−2iz+2iw=2−2i
−z+w=2i2−2i=2(2−2i)(−i)=2−2i+2i2=2−2−2i=−1−i
−z+w=−1−i(∗∗)
From (*) and (**): Adding: 2w=1, so w=21; then z=2+i−21=23+i.
Strategy: Use elimination to reduce to one variable, then back-substitute. Always verify by substituting back into both original equations.