write c^3 as sum of two squares a^2+b^2. a and b must be integer and greater than zero.
For example
5^3 = 2^2 + 11^2 5^3 = 5^2 + 10^2 10^3 = 10^2 + 30^2 10^3 = 18^2 + 26^2
sort output matrix so that each row and first column is in ascending order.
Solution Stats
Problem Comments
4 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers329
Suggested Problems
-
Find the numeric mean of the prime numbers in a matrix.
9137 Solvers
-
Renaming a field in a structure array
1578 Solvers
-
How long is the longest prime diagonal?
410 Solvers
-
Return a list sorted by number of consecutive occurrences
430 Solvers
-
Given a matrix, swap the 2nd & 3rd columns
1263 Solvers
More from this Author92
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Last test case is wrong. Does not catch 500^3 == 1160^2 + 11120^2 and 500^3 == 2000^2 + 11000^2 .
First case is also wrong: 1^3 = 1^2 + 0^2. The problem doesn't specify positive numbers, so it is a valid solution. (If you *really* want to open a can of worms, a and b don't have to be integers, or even real numbers according to the test suite!)
You are right James. I have add some sentences to problem definition.
How on earth the leading solution size is 7? can you please provide it also for us ?