at http://www.teacherschoice.com.au/Maths%5FLibrary/Trigonometry/solve%5Ftrig%5FSSS.htm there is "Find the inverse cos of -0.25 using a scientific calculator...C = cos-1(-0.25)= 104.478º " and "Find the inverse sin of 0.484123 using a scientific calculator...A = sin-1(0.484123)= 28.955º "
I am trying to do this in c# , so i am trying the following
double mycalc = Math.Asin(0.484123) ;
double mycalc2 = Math.Acos(-0.25);
double mycalc99 = Math.Pow(Math.Acos(-0.25), -1); // or Math.Cos
double mycalc66 = Math.Pow(Math.Asin(0.484123), -1) ; // or Math.Sin
What steps am I missing?
Should I use DegreeToRadian function ?
Using calculator net scientific-calculator.html
0.484123 asin does equal 28.955029723
-0.25 acos does equal 104.47751219
So what is missing in c# calc, please ?
Thanks