Hello, I am trying to figure out the detailed steps of the attached computation.
data = {{5, 9}, {8, 15}};
p[x_] := a x + b;
eqns = Table[p[data[[i, 1]]] == data[[i, 2]], {i, 2}]
**Result**: {5 a + b == 9, 8 a + b == 15}
Is there a command that lets you see the detailed compute steps? I don't get how one gets the result. This is an example from the Linear Algebra training module.
Thank you, Andrew
Attachments: