You have probably seen the common riddle wherein combined ages are provided and you must determine the individual ages. For example: If the ages of Alex and Barry sum to 43, the ages of Alex and Chris sum to 55, and the ages of Barry and Chris sum to 66, what are their individual ages?
For this problem, we'll assume that the three individuals are represented by A, B, and C, whereas the sums are AB, AC, and BC:
- A+B = AB (= 43)
- A+C = AC (= 55)
- B+C = BC (= 66)
As you might have noticed, this is a simple matrix algebra problem. Write a function to return the individuals' ages [A;B;C] based on the supplied sums [AB AC BC].
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers326
Suggested Problems
-
46816 Solvers
-
We love vectorized solutions. Problem 1 : remove the row average.
884 Solvers
-
Determine the number of odd integers in a vector
828 Solvers
-
Try 1.5.4: Celsius to Fahrenheit
867 Solvers
-
5899 Solvers
More from this Author139
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Barry and Chris (not Alex and Chris)
Thanks for the catch. I've updated the explanation.