Math Problem Statement
There exist two complex numbers $c$, say $c_1$ and $c_2$, so that $3 + 2i$, $6 + i$, and $c$ form the vertices of an equilateral triangle. Find the product $c_1 c_2$ in rectangular form. [asy] import TrigMacros; size(200);
pair A, B; pair[] C;
rr_cartesian_axes(-2, 8, -4, 7, complexplane = true); A = (3,2); B = (6,1); C[1] = rotate(60,A)(B); C[2] = rotate(60,B)(A);
draw(A--C[1]--B--C[2]--cycle); draw(A--B);
dot("$3 + 2i$", A, 2*NNW); dot("$6 + i$", B, E); dot("$c_1$", C[1], N); dot("$c_2$", C[2], S); [/asy] Hint(s): Solve for $c_1$ and $c_2$ using exponential form, but don't simplify them until you do the multiplication: it simplifies calculations.
Solution
Ask a new question for Free
By Image
Drop file here or Click Here to upload
Math Problem Analysis
Mathematical Concepts
Complex Numbers
Geometry in the Complex Plane
Rotation of Complex Numbers
Formulas
Rotation of a complex number: z' = z_0 + (z - z_0) e^{iθ}
Product of two complex numbers: z_1 z_2
Theorems
Rotation of Complex Numbers
Properties of Equilateral Triangles
Exponential form of complex numbers
Suitable Grade Level
Undergraduate or Advanced High School (Grades 11-12)
Related Recommendation
Complex Numbers and Equilateral Triangles on the Argand Plane
Geometric Construction of Complex Product zw with Polar Coordinates
Complex Number Geometry in Hexagon: Equilateral Triangle and Area Calculation
3-4-5 Triangle in Complex Plane: Find z = a + bi
Expand and Simplify (x + iy)³ Using Binomial Expansion