A + B = 8
B + D = 8
A + C = 13
C - D = 6
How to find the values of A, B, C and D?
I assumed the values would be integers and positive and did this:
a = range(0,14)
b = c = d = a
for i in a:
for x in b:
for y in c:
for z in d:
if (a[i] + b[x] == 8 and a[i] + c[y] == 13 and b[x] + d[z] == 8 and c[y]-d[z]==6):
print(a[i],b[x],c[y],d[z])
But that does not work. Even then I extend range to a = range(-100,100)
.
After solving the equation by hand (with Google's help) I know that floats are involved, e.g. A = 3.5
etc.
But then how to solve it with Python.
There's no need to learn matrix theory (at least not for this).
You just need to express each equation such as A+B=8 in the form A+B-8=0 and then omit the '=0' part.