Problem 2023. Is this triangle right-angled?
Given any three positive numbers a, b, c, return true if the triangle with sides a, b and c is right-angled. Otherwise, return false.
Solution Stats
Problem Comments
-
5 Comments
Show
2 older comments
Bunny Harlan
on 25 Oct 2017
Passes for True, but Failing when I get to false test?? Not sure at the moment what I could be missing.
pwl
on 31 Jan 2023
I'd like to suggest an additional test case such as
a = sqrt(10); b = 3; c = 1;
Here the result is "true", but some of the existing solutions won't work because of rounding errors.
Adam
on 8 Dec 2023
interesting!
Solution Comments
Show commentsProblem Recent Solvers6005
Suggested Problems
-
Return the 3n+1 sequence for n
8346 Solvers
-
middleAsColumn: Return all but first and last element as a column vector
613 Solvers
-
Calculate the area of a triangle between three points
3138 Solvers
-
Create a two dimensional zero matrix
497 Solvers
-
8329 Solvers
More from this Author10
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!