Given a vector of lengths [a b c], determines whether a triangle with those sides lengths is a right triangle: http://en.wikipedia.org/wiki/Right_triangle.
Examples:
[3 4 5] ---> true
[5 12 13] ---> true
[5 5 5] ---> false
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers1445
Suggested Problems
-
Swap the first and last columns
23092 Solvers
-
Remove the small words from a list of words.
1566 Solvers
-
Set the array elements whose value is 13 to 0
1455 Solvers
-
806 Solvers
-
Matlab Basics - Absolute Value
679 Solvers
More from this Author23
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
how is [5 5 5] false?
@Nikolaos
[5 5 5] can make a triangle, but not a *right* triangle (with one 90-degree angle). See the Wikipedia page definition.
Great!