FQL v4 will be decommissioned on June 30, 2025. Ensure that you complete your migration from FQL v4 to FQL v10 by that date. Fauna accounts created after August 21, 2024 must use FQL v10. These accounts will not be able to run FQL v4 queries or access the v4 Dashboard. For more details, see the v4 EOL announcement and migration guide. Contact support@fauna.com with any questions. |
Hypot
This reference topic applies to FQL v4. Go to this page for the latest FQL v10 reference topics. |
Hypot( a, b )
hypot( a, b )
Hypot( a, b )
Hypot( a, b )
Hypot( a, b )
Hypot( a, b )
Description
The Hypot
function calculates the length of the hypotenuse of a
right-angle triangle, given the length of the other two sides.
Parameters
Parameter | Type | Definition and Requirements |
---|---|---|
|
Number |
The length of one side of the right triangle. |
|
Number |
Optional - The length of the second side of the right triangle. If
this argument is not provided, the operation assumes an isosceles
right triangle, where |
Examples
The following query executes an array of independent hypotenuse calculations and returns the results in an array. The result array position matches the execution array position. The first operation takes the value 3.0 for the length of both sides of the right triangle (i.e., an isosceles right triangle) and returns the length of the hypotenuse. The result 4.242640687119285 is in the top position of the execution array. The second operation calculates the hypotenuse length using side lengths of 3 and 4. The resulting hypotenuse length of 5.0 is placed in the second position of the execution array.
[ 4.242640687119285, 5, 6.519202405202649 ]
[4.242640687119285, 5, 6.519202405202649]
[4.242640687119285, 5.0, 6.519202405202649]
[ 4.242640687119285, 5, 6.519202405202649 ]
Is this article helpful?
Tell Fauna how the article can be improved:
Visit Fauna's forums
or email docs@fauna.com
Thank you for your feedback!