Polynomial Interpolation for HP-67
|
05-11-2022, 12:27 PM
Post: #4
|
|||
|
|||
RE: Polynomial Interpolation for HP-67
(05-11-2022 05:31 AM)Thomas Klemm Wrote: \(f(x) = 12 + (x+5)(\frac{1}{6} - (x-1)\frac{13}{42})\) We can do synthetic multiplication, to transform "offset" polynomial to "normal" polynomial. We do it inside out, first (x-1), then (x+5) Code: -13/42 1/6 12 Or, we can convert 1 set of polynomial offsets, to another, in 1 shot. see Funny Factorials and Slick Sums We don't see much benefits here, because "normal" polynomial have zero offsets. a(n) x^n + a(n-1) x^(n-1) + ... = (x-0) * (a(n) + (x-0) * (a(n-1) + ... From offsets (-1,5) → (0,0): Code: -13/42 1/6 12 |
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
Polynomial Interpolation for HP-67 - Matt Agajanian - 05-11-2022, 01:04 AM
RE: Polynomial Interpolation for HP-67 - Thomas Klemm - 05-11-2022, 05:31 AM
RE: Polynomial Interpolation for HP-67 - Albert Chan - 05-11-2022 12:27 PM
RE: Polynomial Interpolation for HP-67 - KeithB - 05-11-2022, 12:16 PM
RE: Polynomial Interpolation for HP-67 - Thomas Klemm - 05-11-2022, 09:37 PM
|
User(s) browsing this thread: 1 Guest(s)