Ask Your Question
0

Arctan(tan(2pi/3))

asked 13 years ago

Bakes gravatar image

updated 9 years ago

FrédéricC gravatar image

i know it looks like the short cut is applicable here. But isn't there a second point on the unit circle with the same tangent as 2pi/3? Tan(2pi/3)= -(Sqr.rt. 3) There are other places with the same value for tangent. 5pi/3 Tan(5pi/3)= -(Sqr.rt. 3)

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 13 years ago

kcrisman gravatar image

I'm not sure what you're asking. Let us know if this is not it.

sage: arctan(tan(2*pi/3))
arctan(-sqrt(3))

Notice Sage doesn't automatically simplify this, although

sage: arctan(0)
0
sage: arctan(1)
1/4*pi

You have to do this.

sage: arctan(tan(2*pi/3)).simplify()
-1/3*pi

To get other branches, you'll want to think about arctan2.

sage: arctan2(tan(2*pi/3),1).simplify()
-1/3*pi
sage: arctan2(-tan(2*pi/3),-1).simplify()
2/3*pi

You can do

sage: arctan2?

for more details.

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 13 years ago

Seen: 5,262 times

Last updated: Nov 16 '11