Book
Advanced Engineering Mathematics
Author
Erwin Kreyszig
Edition
8th Edition
x, y, z = var('x,y,z')
eq1 = 5*x - 3*y + 7*z == -27
eq2 = 10*x - 9*z == 27
eq3 = -x + 6*y + 4*z == 0
solve([eq1, eq2, eq3], x,y,z)
Solution by:
- ganesh, developer, space
- bhanukiran, student, technical university of Delft
- saransh, student, sobhit university
