The point ( 4 + 7 3 , 7 − 4 3 ) is rotated 3 π radians counterclockwise about the origin. If the resulting image is ( a , b ) , then what is a + b ?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Why does multiplication give us the rotation image?
Log in to reply
It's one of the interesting properties of complex numbers. For every complex number a + b i , there is a magnitude, r = a 2 + b 2 , and an angle, θ = arctan a b . In polar form , the complex number is written as r e i θ . You can put the complex number back into standard form using Euler's formula : r e i θ = r cos θ + i r sin θ
Suppose there are two complex numbers r 1 e i θ 1 and r 2 e i θ 2 . Their product is:
r 1 e i θ 1 × r 2 e i θ 2 = r 1 r 2 e i ( θ 1 + θ 2 ) = r 1 r 2 cos ( θ 1 + θ 2 ) + i r 1 r 2 sin ( θ 1 + θ 2 )
The consequence of multiplying complex numbers is that their angles are added together. Thus, a rotation is achieved.
Using the rotation transformation matrix in R 2 :
[ cos θ sin θ − sin θ cos θ ]
the require image point is computed per:
[ cos ( π / 3 ) sin ( π / 3 ) − sin ( π / 3 ) cos ( π / 3 ) ] ⋅ [ 4 + 7 3 7 − 4 3 ] = [ 8 1 4 ] = [ a b ] .
Thus, a + b = 2 2 .
Problem Loading...
Note Loading...
Set Loading...
The corresponding number in the complex plane is ( 4 + 7 3 ) + i ( 7 − 4 3 ) .
The corresponding number for the rotation is e π i / 3 = 2 1 + i 2 3 .
To achieve the rotation image in the complex plane, multiply these numbers.
( 2 3 ( 4 + 7 3 ) + i ( 7 − 4 3 ) ) ( 2 1 + i 2 3 ) = 8 + 1 4 i
This corresponds to the point ( 8 , 1 4 ) in the coordinate plane. Therefore, a + b = 2 2 .