2

I have a polynomial equation:

$$y=(-2 \times 10^{-10} \times x^5)+(1 \times 10^{-7} \times x^4)-(2 \times 10^{-5} \times x^3)+(0.0018 \times x^2)-(0.0156 \times x)-0.164$$

I want to be able to change the equation of this line, so that when x=10, y=0.64.

TDJ92
  • 33

1 Answers1

0

Just add a constant term to shift the polynomial up by $0.64 - (-0.15902) = 0.79902$.

In other words your $-0.164$ becomes $-0.164 + 0.79902 = 0.63502$.

That will do it, if I understand your question correctly now.

See here for an explanation of function transformations.

MGA
  • 9,636