]> gitweb.michael.orlitzky.com - numerical-analysis.git/commitdiff
Add the fixed point method to Roots.Simple.
authorMichael Orlitzky <michael@orlitzky.com>
Thu, 27 Sep 2012 04:32:39 +0000 (00:32 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Thu, 27 Sep 2012 04:32:39 +0000 (00:32 -0400)
src/Roots/Simple.hs

index 0b0b93dfc05a070756a2838551eb0b3460f1f0e6..7742355041e289f0a3f40ccdadbfa41dca5b6044 100644 (file)
@@ -202,3 +202,44 @@ secant_method f epsilon x0 x1
   = find (\x -> abs (f x) < epsilon) x_n
   where
     x_n = secant_iterations f x0 x1
+
+
+
+fixed_point_iterations :: (a -> a) -- ^ The function @f@ to iterate.
+                       -> a       -- ^ The initial value @x0@.
+                       -> [a]     -- ^ The resulting sequence of x_{n}.
+fixed_point_iterations f x0 =
+  iterate f x0
+
+
+-- | Find a fixed point of the function @f@ with the search starting
+--   at x0. This will find the first element in the chain f(x0),
+--   f(f(x0)),... such that the magnitude of the difference between it
+--   and the next element is less than epsilon.
+--
+fixed_point :: (Num a, Ord a)
+            => (a -> a) -- ^ The function @f@ to iterate.
+            -> a       -- ^ The tolerance, @epsilon@.
+            -> a       -- ^ The initial value @x0@.
+            -> a       -- ^ The fixed point.
+fixed_point f epsilon x0 =
+  fst winning_pair
+  where
+    xn = fixed_point_iterations f x0
+    xn_plus_one = tail $ fixed_point_iterations f x0
+
+    abs_diff v w =
+      abs (v - w)
+
+    -- The nth entry in this list is the absolute value of x_{n} -
+    -- x_{n+1}.
+    differences = zipWith abs_diff xn xn_plus_one
+
+    -- A list of pairs, (xn, |x_{n} - x_{n+1}|).
+    pairs = zip xn differences
+
+    -- The pair (xn, |x_{n} - x_{n+1}|) with
+    -- |x_{n} - x_{n+1}| < epsilon. The pattern match on 'Just' is
+    -- "safe" since the list is infinite. We'll succeed or loop
+    -- forever.
+    Just winning_pair = find (\(x, diff) -> diff < epsilon) pairs