극좌표에서 등식 x ^ 2 + 4y ^ 2 = 4를 어떻게 찾을 수 있습니까?

극좌표에서 등식 x ^ 2 + 4y ^ 2 = 4를 어떻게 찾을 수 있습니까?
Anonim

대답:

# r ^ 2 = 4 / (cos ^ 2theta + 4sin ^ 2theta) #

# r = sqrt (4 / (cos ^ 2theta + 4sin ^ 2theta)) = 2 / sqrt (cos ^ 2theta + 4sin ^ 2theta) #

설명:

다음 두 공식을 사용합니다.

# x = rcostheta #

# y = rsintheta #

# x ^ 2 = r ^ 2cos ^ 2theta #

# y ^ 2 = r ^ 2sin ^ 2theta #

# r ^ 2cos ^ 2theta + 4r ^ 2sin ^ 2theta = 4 #

# r ^ 2 (cos ^ 2theta + 4sin ^ 2theta) = 4 #

# r ^ 2 = 4 / (cos ^ 2theta + 4sin ^ 2theta) #

# r = sqrt (4 / (cos ^ 2theta + 4sin ^ 2theta)) = 2 / sqrt (cos ^ 2theta + 4sin ^ 2theta) #