Contact: aviboots(AT)netvision.net.il
40,937 questions
53,400 answers
573 users
$opposite = 2.5; $hypotenuse = 5; $angle_sin = $opposite / $hypotenuse; $right_triangle_angle = asin($angle_sin) * 180 / M_PI; echo "Right Triangle Angle = " . $right_triangle_angle; /* run: Right Triangle Angle = 30 */