PHP hypot() function Last Updated : 22 Jun, 2023 Comments Improve Suggest changes Like Article Like Report The hypot() function is a built-in mathematical function in PHP and returns the square root of sum of square of arguments passed. It finds the hypotenuse, hypotenuse is the longest side of a right angled triangle. It is calculated by the formula : h = \sqrt{x^2+y^2} where x and y are the other two sides of the triangle. Syntax: hypot(x,y); Parameters used: x : the length of first side. y: the length of the second side. Return Type: The return type of hypot(x,y) is Float and it returns the square root of squares of values passed to it as parameters. Examples: Input : x=3, y=4 Output :5 Input :x=9, y=10 Output : 13.453624047074 Below program illustrates the working of hypot() function in PHP: PHP <?php // PHP code // Calculating the value of hypotenuse // With sides = 3,4 $hypotenuse = hypot(3,4); print_r($hypotenuse); // New Line print_r("\n"); // Calculating the value of hypotenuse // With sides = 4,6 $hypotenuse = hypot(4,6); print_r($hypotenuse); ?> Output: 5 7.211102550928 Related Article: hypot() in C++ Create Quiz Comment S ShivamKD Follow 0 Improve S ShivamKD Follow 0 Improve Article Tags : Misc Web Technologies PHP PHP-math PHP-function +1 More Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like