Journal GeckoFood's Journal: [fun] Mathematical challenge 4
Given that you have a, b, c, and d:
W = a + b
X = b + c
Y = c + d
Z = d + a
If you have W, X, Y and Z already, how do you solve for a, b, c, and d? Not quite as simple as it appears...
Given that you have a, b, c, and d:
W = a + b
X = b + c
Y = c + d
Z = d + a
If you have W, X, Y and Z already, how do you solve for a, b, c, and d? Not quite as simple as it appears...
C Code. C Code Run. Run, Code, RUN! PLEASE!!!!
Barbie says math is hard (Score:1, Troll)
Linear Algebra (Score:2)
How to solve these. [wikipedia.org]
Re: (Score:2)
That makes for an interesting reduction exercise... Every row always has 2 values in it:
1 1 0 0 | W
0 1 1 0 | X
0 0 1 1 | Y
1 0 0 1 | Z
So, while you can get rid of one value in one column, you introduce a new value in a different column.
Re: (Score:2)
0 1 1 0 | X
0 0 1 1 | Y
1 0 0 1 | Z
Det (M) = Det
{1 1 0
0 1 1
0 0 1}
- Det
{1 0 0
1 1 0
0 1 1} = 1 - 1