Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

trig identities in java

Options
  • 23-12-2014 12:23am
    #1
    Registered Users Posts: 4,941 ✭✭✭


    I'm trying to use a formula that has sin^2(x/2) (sin squared x, not sin x squared) in it, but Math.sin^2 doesn't exist in the Math method.

    Does anyone know how to express it in java?

    I've found examples that give sin(x/2) or has sin(x/2)*sin(x/2)
    but they don't give the correct result.

    I've found one alternative, sin^2 = 1/2 - 1/2cos(2x) but that doesn't work for me either.

    it's the Haversine formula for working out distance along the earths surface from to lat/long points.


Comments

  • Registered Users Posts: 27,161 ✭✭✭✭GreeBo


    Sin squared x is equal to sin x * sin x

    It's written that way to about confusion with sin ( x*x)


  • Registered Users Posts: 4,941 ✭✭✭paulbok


    Right so, back to the drawing board then.


  • Registered Users Posts: 27,161 ✭✭✭✭GreeBo


    You could also Google and get several java implementations...


Advertisement