vote up 0 vote down star

There is another post here about Atan but I dont see any relevant answers:

http://stackoverflow.com/questions/311501/c-why-math-atanmath-tanx-x

Isn't Math.Atan the same as tan-1? On my calculator I do:

tan-1(1) and i get 45.

tan(45) = 1

In C#:

Math.Atan(1) = 0.78539816339744828 // nowhere near the 45.

Math.Tan(45) = 1.6197751905438615 //1 dp over the < Piover2.

Whats happening here?

flag

1  
Are both results in same units, like degrees or radians? – TheVillageIdiot Oct 14 at 4:21
I asked my math teacher this same question 25 years ago, except of course I was asking about BASIC on the Commodore PET, not about C#. :) – Eric Lippert Oct 14 at 5:39
On my calculators I can switch between degrees, radians and grads. – starblue Oct 14 at 19:01

4 Answers

vote up 13 vote down check

C# is treating the angles as radians; your calculator is using degrees.

link|flag
vote up 11 vote down

Atan(1) is equal to π/4. This is the correct value when working in radians. The same can be said of the other calculations in the library.

Feel free to convert the values:

double DegreeToRadian(double angle) { return Math.PI * angle / 180.0;   }
double RadianToDegree(double angle) { return angle * (180.0 / Math.PI); }

This means that 45 radians is equal to about 2578.31008 degrees, so the tangent you are looking for should be better expressed as tan(π/4) or if you don't mind "cheating": Math.Tan(Math.Atan(1)); // ~= 1. I'm fairly confident that had you tried that yourself, you'd have realized something reasonable was happening, and might have stumbled upon how radians relate to degrees.

link|flag
So ... Following how you use the words, shouldn't the methods be named DegreesToRadians() and RadiansToDegrees()? – unwind Oct 14 at 14:50
Sure. Call them whatever you want. d2r() and r2d() might make fun macro names if C# supported macros. – dlamblin Oct 14 at 16:53
vote up 3 vote down

Your calculator is in Degrees, C# is doing these calculations in Radians.

To get the correct values:

int angle = 45;  //in degrees

int result = Math.Tan(45 * Math.PI/180);

int aTanResult = Math.Atan(result) *180/Math.PI;
link|flag
vote up 2 vote down

Math.Atan returns a value in radians. Your calculator is using degrees. 0.7853... (pi/4) radians is 45 degrees. (And conversely Math.Tan(45) is telling you the tan of 45 radians.)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.