(15C) Bairstow's Method
|
02-27-2022, 12:40 PM
Post: #4
|
|||
|
|||
RE: (15C) Bairstow's Method
(02-25-2022 01:20 AM)Thomas Klemm Wrote: \(P(x) = Q(x) \cdot T(x) + R(x)\) quo(P*x²,T) = Q*x² + quo(R*x²,T) = Q*x² + b1*x + b0 This get all the b's. Same idea to get all the c's HP Prime code (note: index 1 = head of list, index 0 = end of list) Code: #cas // P,T = polynomial, test quadratic Example from Gerald's "Applied Numerical Analysis", p33 CAS> [1,1,1] // guess T = x^2+x+1 CAS> bairstow([1,-1.1,2.3,0.5,3.3],Ans) [1,0.890309886867,1.06345302509] [1,0.900024696323,1.10016130857] [1,0.899999998585,1.09999999975] [1,0.9,1.1] |
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
(15C) Bairstow's Method - Thomas Klemm - 02-25-2022, 01:20 AM
RE: (15C) Bairstow's Method - rprosperi - 02-25-2022, 01:58 AM
RE: (15C) Bairstow's Method - Thomas Klemm - 02-25-2022, 07:04 AM
RE: (15C) Bairstow's Method - Albert Chan - 02-27-2022 12:40 PM
|
User(s) browsing this thread: 1 Guest(s)