]> gitweb.michael.orlitzky.com - sage.d.git/blob - mjo/interpolation.py
Make the divided_difference() function rely on divided_difference_coefficients().
[sage.d.git] / mjo / interpolation.py
1 from sage.all import *
2 from misc import product
3
4 def lagrange_coefficient(k, x, xs):
5 """
6 Returns the coefficient function l_{k}(variable) of y_{k} in the
7 Lagrange polynomial of f. See,
8
9 http://en.wikipedia.org/wiki/Lagrange_polynomial
10
11 for more information.
12
13 INPUT:
14
15 - ``k`` -- the index of the coefficient.
16
17 - ``x`` -- the symbolic variable to use for the first argument
18 of l_{k}.
19
20 - ``xs`` -- The list of points at which the function values are
21 known.
22
23 OUTPUT:
24
25 A symbolic function of one variable.
26
27 TESTS::
28
29 sage: xs = [ -pi/2, -pi/6, 0, pi/6, pi/2 ]
30 sage: lagrange_coefficient(0, x, xs)
31 1/8*(pi - 6*x)*(pi - 2*x)*(pi + 6*x)*x/pi^4
32
33 """
34 numerator = product([x - xs[j] for j in range(0, len(xs)) if j != k])
35 denominator = product([xs[k] - xs[j] for j in range(0, len(xs)) if j != k])
36
37 return (numerator / denominator)
38
39
40
41 def lagrange_polynomial(x, xs, ys):
42 """
43 Return the Lagrange form of the interpolation polynomial in `x` of
44 at the points (xs[k], ys[k]).
45
46 INPUT:
47
48 - ``x`` - The independent variable of the resulting polynomial.
49
50 - ``xs`` - The list of points at which we interpolate `f`.
51
52 - ``ys`` - The function values at `xs`.
53
54 OUTPUT:
55
56 A symbolic function (polynomial) interpolating each (xs[k], ys[k]).
57
58 TESTS::
59
60 sage: xs = [ -pi/2, -pi/6, 0, pi/6, pi/2 ]
61 sage: ys = map(sin, xs)
62 sage: L = lagrange_polynomial(x, xs, ys)
63 sage: expected = 27/16*(pi - 6*x)*(pi - 2*x)*(pi + 2*x)*x/pi^4
64 sage: expected -= 1/8*(pi - 6*x)*(pi - 2*x)*(pi + 6*x)*x/pi^4
65 sage: expected -= 1/8*(pi - 6*x)*(pi + 2*x)*(pi + 6*x)*x/pi^4
66 sage: expected += 27/16*(pi - 2*x)*(pi + 2*x)*(pi + 6*x)*x/pi^4
67 sage: bool(L == expected)
68 True
69
70 """
71 ls = [ lagrange_coefficient(k, x, xs) for k in range(0, len(xs)) ]
72 sigma = sum([ ys[k] * ls[k] for k in range(0, len(xs)) ])
73 return sigma
74
75
76
77 def divided_difference_coefficients(xs):
78 """
79 Assuming some function `f`, compute the coefficients of the
80 divided difference f[xs[0], ..., xs[n]].
81
82 TESTS:
83
84 sage: divided_difference_coefficients([0])
85 [1]
86 sage: divided_difference_coefficients([0, pi])
87 [-1/pi, 1/pi]
88 sage: divided_difference_coefficients([0, pi, 2*pi])
89 [1/2/pi^2, -1/pi^2, 1/2/pi^2]
90
91 """
92 coeffs = [ product([ (QQ(1) / (xj - xi)) for xi in xs if xi != xj ])
93 for xj in xs ]
94 return coeffs
95
96 def divided_difference(xs, ys):
97 """
98 Return the Newton divided difference of the points (xs[k],
99 ys[k]). Reference:
100
101 http://en.wikipedia.org/wiki/Divided_differences
102
103 INPUT:
104
105 - ``xs`` -- The list of x-values.
106
107 - ``ys`` -- The function values at `xs`.
108
109 OUTPUT:
110
111 The (possibly symbolic) divided difference function.
112
113 TESTS::
114
115 sage: xs = [0]
116 sage: ys = map(sin, xs)
117 sage: divided_difference(xs, ys)
118 0
119 sage: xs = [0, pi]
120 sage: ys = map(sin, xs)
121 sage: divided_difference(xs, ys)
122 0
123 sage: xs = [0, pi, 2*pi]
124 sage: ys = map(sin, xs)
125 sage: divided_difference(xs, ys)
126 0
127
128 We try something entirely symbolic::
129
130 sage: f = function('f', x)
131 sage: divided_difference([x], [f(x=x)])
132 f(x)
133 sage: x1,x2 = var('x1,x2')
134 sage: divided_difference([x1,x2], [f(x=x1),f(x=x2)])
135 f(x1)/(x1 - x2) - f(x2)/(x1 - x2)
136
137 """
138 coeffs = divided_difference_coefficients(xs)
139 v_cs = vector(coeffs)
140 v_ys = vector(ys)
141 return v_cs.dot_product(v_ys)
142
143
144 def newton_polynomial(x, xs, ys):
145 """
146 Return the Newton form of the interpolating polynomial of the
147 points (xs[k], ys[k]) in the variable `x`.
148
149 INPUT:
150
151 - ``x`` -- The independent variable to use for the interpolating
152 polynomial.
153
154 - ``xs`` -- The list of x-values.
155
156 - ``ys`` -- The function values at `xs`.
157
158 OUTPUT:
159
160 A symbolic function.
161
162 TESTS:
163
164 sage: xs = [ -pi/2, -pi/6, 0, pi/6, pi/2 ]
165 sage: ys = map(sin, xs)
166 sage: L = lagrange_polynomial(x, xs, ys)
167 sage: N = newton_polynomial(x, xs, ys)
168 sage: bool(N == L)
169 True
170
171 """
172 degree = len(xs) - 1
173
174 N = SR(0)
175
176 for k in range(0, degree+1):
177 term = divided_difference(xs[:k+1], ys[:k+1])
178 term *= product([ x - xk for xk in xs[:k]])
179 N += term
180
181 return N