odpoveď:
#r = root (3) ((3sin (t) - cos (t)) / (cos (t) ^ 2sin (t) ^ 2)) #
vysvetlenie:
Konverzia obdĺžnikovej rovnice na polárnu rovnicu je pomerne jednoduchá.
#x = rcos (t) #
#y = rsin (t) #
Ďalším užitočným pravidlom je, že odvtedy #cos (x) ^ 2 + sin (x) ^ 2 = 1 #:
# x ^ 2 + y ^ 2 = r ^ 2cos (t) ^ 2 + r ^ 2sin (t) ^ 2 = r ^ 2 #
Ale pre tento problém to nebudeme potrebovať. Rovnicu chceme tiež prepísať ako:
# 0 = x - 3y + x ^ 2y ^ 2 #
A robíme substitúciu:
# 0 = rcos (t) - 3rsin (t) + r ^ 4cos (t) ^ 2sin (t) ^ 2 #
# 0 = cos (t) - 3sin (t) + r ^ 3cos (t) ^ 2sin (t) ^ 2 #
Teraz môžeme vyriešiť # R #:
# -r ^ 3cos (t) ^ 2sin (t) ^ 2 = cos (t) - 3sin (t) #
# r ^ 3cos (t) ^ 2sin (t) ^ 2 = 3sin (t) - cos (t) #
# r ^ 3 = (3sin (t) - cos (t)) / (cos (t) ^ 2sin (t) ^ 2) #
#r = root (3) ((3sin (t) - cos (t)) / (cos (t) ^ 2sin (t) ^ 2)) #