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)?

parisse
Messages : 5920
Inscription : mar. déc. 20, 2005 4:02 pm
Contact :

Re: solving a generator system

Message par parisse » dim. nov. 02, 2025 2:16 pm

keep_pivot prevents dividing by the pivot. Dividing does the implicit assumption that the pivot is not 0 (generically true in your example, but not always).

Répondre