solving a generator system

Messages in english

Modérateur : xcasadmin

compsystems
Messages : 614
Inscription : sam. févr. 04, 2017 11:34 pm
Localisation : Colombia
Contact :

solving a generator system

Message par compsystems » ven. oct. 31, 2025 4:35 am

Hello, I have a question about solving a generator system.

augmented matrix A |X:

[[3,1,x1],
[2,1,x2],
[1,-2,x3]]


ref([[3,1,x1],[2,1,x2],[1,-2,x3]],keep_pivot) [enter]
[[1,-2,x3],
[0,5,x2-2*x3],
[0,0,5*x1-7*x2-x3]]

0=5*x1-7*x2-x3 (restriction in the last row )

last row
but

ref([[3,1,x1],[2,1,x2],[1,-2,x3]]) [enter]
[[1,-2,x3],
[0,1,(x2-2*x3)/5],
[0,0,1]]

last row
0=1

Why is there a solution in one case (with restrictions) and not in another (contradiction)?

Répondre