w3resource

Python Math: Convert Polar coordinates to rectangular coordinates


35. Polar to Rectangular Conversion

Write a Python program to convert Polar coordinates to rectangular coordinates.

Sample Solution:

Python Code:

import cmath
cn = complex(3,4)
# get polar coordinates
print("Polar Coordinates: ",cmath.polar(cn))

# polar to rectangular. Format for input is (length, ‹angle in radians›).
#Returns a complex number
cn1 = cmath.rect(2, cmath.pi)
print("Polar to rectangular: ",cn1)

Sample Output:

Polar Coordinates:  (5.0, 0.9272952180016122)                                                                 
Polar to rectangular:  (-2+2.4492935982947064e-16j) 

Flowchart:

Flowchart: Find the roots of a quadratic function

For more Practice: Solve these Related Problems:

  • Write a Python program that converts polar coordinates (radius and angle) to rectangular (complex) form and prints the result.
  • Write a Python function that takes polar coordinates as input, converts them to a complex number, and returns the result.
  • Write a Python script to prompt the user for polar coordinates and then display the equivalent rectangular coordinates with proper formatting.
  • Write a Python program to convert a list of polar coordinates to rectangular coordinates and print the list of resulting complex numbers.

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to get the length and the angle of a complex number.
Next: Write a Python program to find the maximum and minimum numbers from the specified decimal numbers.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.