Sin and asine confusion

So I was always taught that in maths asin(sin(5)) = 5 in degrees however in java its done in radians , this is causing me major issues because I am attempt to sin the asin something dont worry for what reason I just want to know how I would do it so that I can use it.

Huh? I don’t quite get you, but this is what I think might help you:


Math.toDegrees(Math.asin(Math.sin(Math.toRadians(5)))) = 5 in degrees

We do need to know the reason. There is really no reason to ever do this.

Anyway, you can just use Math.toRadians();

ninja’d

yer dont wory , my calculator is being a bit dodgy at the moment it gives me very odd numbers.