$132.55-($15*12)=$132.55-$180=$-47.45
So then he would have owed 47.45 dollars!
90° is equal to
or 1.5707 radians.
Step-by-step explanation:
Step 1:
If an angle is represented in degrees, it will be of the form x°.
If an angle is represented in radians, it will be of the form
radians.
To convert degrees to radians, we multiply the degree measure by
.
For the conversion of degrees to radians,
the degrees in radians = (given value in degrees)(
).
Step 2:
To convert
90°,

radians.
So 90° is equal to
or 1.5707 radians.
9514 1404 393
Answer:
0.28 -0.95i
Step-by-step explanation:
Multiply numerator and denominator by the conjugate of the denominator.

_____
<em>Additional comment</em>
If the original number is A∠β, the ratio is 1∠(2β), the square of the unit vector in the same direction as the original.
<span>import math
def calculateDistance(x1,y1,x2,y2):
dist = math.sqrt((x2 - x1)**2 + (y2 - y1)**2)
return dist
distance = calculateDistance(2,4,6,8)
print distance</span>