hypot():hypotenuse of a right-angle triangle

<?Php
echo hypot(4,3); // Output is 5
echo "<br>";
echo hypot(2,3); // Output 3.605551275464
echo "<br>";
echo hypot(4,5); // Output 6.4031242374328
echo "<br>";
echo hypot(8,10); // Output is 12.806248474866
echo "<br>";
echo hypot(12,13); // Output is 17.691806012954
?>
Syntax
float hypot ( float $x , float $y )
ParameterDESCRIPTION
$xRequired : Length of first side.
$xRequired : Length of second side.
The output is length of the hypotenuse.

Rounding the output to two decimal place by using round()
echo round(hypot(9,10),2); // Output is 13.45

Example: Calculating Hypotenuse of a Right Triangle

$a = 3;
$b = 4;
echo hypot($a, $b);  // Output: 5 (Pythagorean theorem: sqrt(3^2 + 4^2))

Example: Using Negative Values

$a = -3;
$b = 4;
echo hypot($a, $b);  // Output: 5 (Negative values are squared, so the result is positive)
These examples demonstrate practical uses of `hypot()` for calculating hypotenuse and working with both positive and negative values.
Math Functions base_convert(): Convert number From any base to other bindec(): Decimal equivalent of Binary string
Subhendu Mohapatra — author at plus2net
Subhendu Mohapatra

Author

🎥 Join me live on YouTube

Passionate about coding and teaching, I publish practical tutorials on PHP, Python, JavaScript, SQL, and web development. My goal is to make learning simple, engaging, and project‑oriented with real examples and source code.



Subscribe to our YouTube Channel here



plus2net.com











PHP video Tutorials
We use cookies to improve your browsing experience. . Learn more
HTML MySQL PHP JavaScript ASP Photoshop Articles Contact us
©2000-2025   plus2net.com   All rights reserved worldwide Privacy Policy Disclaimer