This is a good problem to refresh basic geometry
The checking should include a random Pythagorean triple (given random natural numbers a>b: a^2-b^2, 2ab, and a^2+b^2 form a Pythagorean triple). For the checking right now, a~=2 passes the tests.
Basic triangle math plus if statements. Great example
This reminds me the old good days ... basic geometry as Sreeram Mohan said :)
Brain clearance
if (a^2+b^2-c^2==0)
flag = true;
else
flag = false;
end
Easy problem.
Can we please block and ban all these fake answers that cheat the webapp into returning success when they haven't actually solved the problem?
What is wrong with this code?
use
if c==sqrt(a^2 + b^2)
flag=true
else
flag=false
Should add tolerance of 10*eps to make this function practical. Otherwise you can have a triangle with a 89.9999999 deg angle and it will say it is not a right triangle. Matlab is a numerical language.
This user (mohamed elbesealy) appears to have gamed the system, with fraudulent "likes" of this unremarkable solution submitted by 'sock-puppet' accounts. —DIV
mmm c is always grater than a and b
This problem was repeated
Is my wife right? Now with even more wrong husband
1241 Solvers
How many trades represent all the profit?
520 Solvers
Set some matrix elements to zero
290 Solvers
What is Sum Of all elements of Matrix
292 Solvers
664 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!