I'm new here and I don't really know how to precisely ask my question. I have to prepare code that will proceed like x1 = x0 + t* e
, which in practice looks like:
x1 = [0.5, 1] + [0, t]
x1 = [0.5, 1+t]
How should I declare t
to make it work? I mean t
has to remain here all the time, to make it possible to calculate the roots of a quadratic function a few steps further.