Complex Numbers
Level: 2 (Recall & standard textbook problems) Time limit: 30 minutes Total marks: 40
Answer all questions. Use throughout. Show working where relevant.
Q1. Simplify the following powers of : (a) , (b) , (c) . (3 marks)
Q2. For , write down: (a) the real part, (b) the imaginary part, (c) the complex conjugate , (d) the modulus . (4 marks)
Q3. Express in polar form , giving the argument in radians. (4 marks)
Q4. Evaluate and write the result in the form : (4 marks)
Q5. If and , find and in polar (cis) form. (4 marks)
Q6. State De Moivre's theorem. Hence evaluate , giving your answer as a real/complex number in the form . (5 marks)
Q7. State Euler's formula and use it to express and as simplified complex numbers. (4 marks)
Q8. Find all three cube roots of unity, and show that their sum is zero. (5 marks)
Q9. Find all the values of satisfying . (4 marks)
Q10. Solve the quadratic equation , expressing the roots in the form . Verify they are complex conjugates. (3 marks)
End of paper
Answer keyMark scheme & solutions
Q1. Powers of cycle with period 4 (reduce exponent mod 4).
- (a) . (1)
- (b) . (1)
- (c) . (1)
Why: , so only the remainder of the exponent mod 4 matters; negatives are shifted by adding multiples of 4.
Q2. For :
- (a) (1)
- (b) (1)
- (c) (1)
- (d) (1)
Why: conjugate flips sign of imaginary part; modulus is distance from origin.
Q3. .
- . (1)
- Point in 2nd quadrant. Reference angle ; so . (2)
- . (1)
Why: argument must respect the quadrant of the point.
Q4. Multiply by conjugate of denominator : Working (2), simplification (1), result . (1)
Q5. Multiply: moduli multiply, arguments add. (2) Divide: moduli divide, arguments subtract. (2)
Q6. Statement: For integer , . (1)
: , . (1) (2) . (1)
Q7. Euler's formula: . (2)
- . (1)
- . (1)
Q8. Cube roots of unity: solve , i.e. , . (1)
- (3)
Sum: . (1)
Why: the roots are equally spaced on the unit circle; their vector sum cancels.
Q9. Let with . (1) Also : . (1) Adding: ; then , so ; . (1) Roots: or . (1)
Check: ✓
Q10. . Discriminant . (2) Roots and are conjugates (real coefficients guarantee this). (1)
[
{"claim":"i^15=-i, i^100=1, i^-7=i","code":"result = (I**15==-I) and (I**100==1) and (I**-7==I)"},
{"claim":"(2+3i)/(1-2i)=-4/5+7/5 i","code":"result = simplify((2+3*I)/(1-2*I) - (Rational(-4,5)+Rational(7,5)*I))==0"},
{"claim":"(1+i)^8=16","code":"result = expand((1+I)**8)==16"},
{"claim":"cube roots of unity sum to 0","code":"w=Rational(-1,2)+sqrt(3)/2*I; result = simplify(1+w+w**2)==0"},
{"claim":"z^2=5-12i has root 3-2i","code":"result = expand((3-2*I)**2)==5-12*I"},
{"claim":"z^2-4z+13=0 roots 2+/-3i","code":"result = set(solve(z**2-4*z+13, z))=={2+3*I,2-3*I}"}
]