<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://www.wiki.mohid.com/index.php?action=history&amp;feed=atom&amp;title=Polynomial_interpolation</id>
		<title>Polynomial interpolation - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://www.wiki.mohid.com/index.php?action=history&amp;feed=atom&amp;title=Polynomial_interpolation"/>
		<link rel="alternate" type="text/html" href="http://www.wiki.mohid.com/index.php?title=Polynomial_interpolation&amp;action=history"/>
		<updated>2026-04-05T00:36:11Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.28.0</generator>

	<entry>
		<id>http://www.wiki.mohid.com/index.php?title=Polynomial_interpolation&amp;diff=772&amp;oldid=prev</id>
		<title>Guillaume: 1 revision</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.mohid.com/index.php?title=Polynomial_interpolation&amp;diff=772&amp;oldid=prev"/>
				<updated>2008-12-03T10:39:01Z</updated>
		
		<summary type="html">&lt;p&gt;1 revision&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style='vertical-align: top;' lang='en'&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Revision as of 10:39, 3 December 2008&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan='2' style='text-align: center;' lang='en'&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Guillaume</name></author>	</entry>

	<entry>
		<id>http://www.wiki.mohid.com/index.php?title=Polynomial_interpolation&amp;diff=771&amp;oldid=prev</id>
		<title>192.168.20.177: /* &lt;mathtex&gt;p&lt;/mathtex&gt;-th derivative of polynomial interpolation of real function &lt;mathtex&gt;f&lt;/mathtex&gt; */</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.mohid.com/index.php?title=Polynomial_interpolation&amp;diff=771&amp;oldid=prev"/>
				<updated>2008-06-27T10:52:07Z</updated>
		
		<summary type="html">&lt;p&gt;‎&lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;&amp;lt;mathtex&amp;gt;p&amp;lt;/mathtex&amp;gt;-th derivative of polynomial interpolation of real function &amp;lt;mathtex&amp;gt;f&amp;lt;/mathtex&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Given &amp;lt;mathtex&amp;gt;n&amp;lt;/mathtex&amp;gt; nodes of known values of any real function &amp;lt;mathtex&amp;gt;f&amp;lt;/mathtex&amp;gt;, the '''unisolvence theorem''' states that there exists a unique polynomial of degree &amp;lt;mathtex&amp;gt;n-1&amp;lt;/mathtex&amp;gt; that interpolates the nodes. Such a polynomial &amp;lt;mathtex&amp;gt;P&amp;lt;/mathtex&amp;gt; is easily constructed for low degrees and is easily generalized to any degree.&lt;br /&gt;
&lt;br /&gt;
==Polynomial interpolation of real function &amp;lt;mathtex&amp;gt;f&amp;lt;/mathtex&amp;gt;==&lt;br /&gt;
By increasing degree:&lt;br /&gt;
* &amp;lt;mathtex&amp;gt;P^{1}(x) = f(x_1) \frac{  \left( x - x_2 \right) }{ \left( x_1 - x_2 \right) } + f(x_2) \frac{  \left( x - x_1 \right) }{ \left( x_2 - x_1 \right) } &amp;lt;/mathtex&amp;gt;&lt;br /&gt;
* &amp;lt;mathtex&amp;gt;P^{2}(x) = f(x_1) \frac{  \left( x - x_2 \right) \left( x - x_3 \right) }{ \left( x_1 - x_2 \right) \left( x_1 - x_3 \right)} + f(x_2) \frac{  \left( x - x_1 \right) \left( x - x_3 \right) }{ \left( x_2 - x_1 \right) \left( x_2 - x_3 \right) } + f(x_3) \frac{  \left( x - x_1 \right) \left( x - x_2 \right) }{ \left( x_3 - x_1 \right) \left( x_3 - x_2 \right) } &amp;lt;/mathtex&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
* &amp;lt;mathtex&amp;gt;P^{n-1}(x) = \sum_{i=1}^{n} \frac{ f(x_i) \prod_{j \neq i}^n \left( x - x_j \right) }{ \prod_{j \neq i}^n \left( x_i - x_j \right) } &amp;lt;/mathtex&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Where &amp;lt;mathtex&amp;gt;x_1,\, x_2,\, \ldots \, x_n,&amp;lt;/mathtex&amp;gt; are the nodes where &amp;lt;mathtex&amp;gt;f&amp;lt;/mathtex&amp;gt; is known.&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;mathtex&amp;gt;p&amp;lt;/mathtex&amp;gt;-th derivative of polynomial interpolation of real function &amp;lt;mathtex&amp;gt;f&amp;lt;/mathtex&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;mathtex&amp;gt;P^{1}(x)^{(1)} =  f(x_1) \frac{  1 }{ \left( x_1 - x_2 \right) } +  f(x_2) \frac{  1 }{ \left( x_2 - x_1 \right) } &amp;lt;/mathtex&amp;gt;&lt;br /&gt;
* &amp;lt;mathtex&amp;gt;P^{2}(x)^{(1)} = f(x_1) \frac{  \left( x - x_2 \right) + \left( x - x_3 \right) }{ \left( x_1 - x_2 \right) \left( x_1 - x_3 \right)} + f(x_2) \frac{  \left( x - x_1 \right) + \left( x - x_3 \right) }{ \left( x_2 - x_1 \right) \left( x_2 - x_3 \right) } + f(x_3) \frac{  \left( x - x_1 \right) + \left( x - x_2 \right) }{ \left( x_3 - x_1 \right) \left( x_3 - x_2 \right) } &amp;lt;/mathtex&amp;gt;&lt;br /&gt;
* &amp;lt;mathtex&amp;gt;P^{2}(x)^{(2)} = f(x_1) \frac{  2 }{ \left( x_1 - x_2 \right) \left( x_1 - x_3 \right)} + f(x_2) \frac{  2 }{ \left( x_2 - x_1 \right) \left( x_2 - x_3 \right) } + f(x_3) \frac{ 2 }{ \left( x_3 - x_1 \right) \left( x_3 - x_2 \right) } &amp;lt;/mathtex&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
* &amp;lt;mathtex&amp;gt; P^{n-1}(x)^{(p)} = \sum_{\alpha_1=1}^{n} \frac{ f(x_{\alpha_1}) \sum_{\alpha_{i+1} \neq \alpha_i,\,(i)}^{n,\,(p)} \prod_{\alpha_{p+2} \neq \alpha_{p+1}}^n \left( x - x_{\alpha_{p+2}} \right) }{ \prod_{\alpha_2 \neq \alpha_1}^n \left( x_{\alpha_1} - x_{\alpha_2} \right) } &amp;lt;/mathtex&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In particular, if &amp;lt;mathtex&amp;gt;n-1 = p&amp;lt;/mathtex&amp;gt; we have,&lt;br /&gt;
* &amp;lt;mathtex&amp;gt; P^{p}(x)^{(p)} = \sum_{i=1}^{n} f(x_{i}) \frac{ p }{ \prod_{j \neq i}^n \left( x_{i} - x_{j} \right) } &amp;lt;/mathtex&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===[[Compound sum]]===&lt;br /&gt;
* &amp;lt;mathtex&amp;gt;\sum^{(p)} = \underbrace{ \sum \circ \sum \circ \ldots \circ \sum }_{p-\text{times}}&amp;lt;/mathtex&amp;gt;,&lt;br /&gt;
* &amp;lt;mathtex&amp;gt; \sum^{(0)} = id &amp;lt;/mathtex&amp;gt;,&lt;br /&gt;
* &amp;lt;mathtex&amp;gt; \sum^{n,\,(p)}_{\alpha_{i+1}=1,\,(i)} = \underbrace{  \sum^{n}_{\alpha_2=1} \circ \sum^{n}_{\alpha_3=1} \circ \ldots \circ \sum^{n}_{\alpha_{p+1}=1} }_{p-\text{times}}&amp;lt;/mathtex&amp;gt;,&lt;br /&gt;
&lt;br /&gt;
==External references==&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Polynomial_interpolation Polynomial interpolation article in wikipedia]&lt;br /&gt;
&lt;br /&gt;
[[Category:Science]]&lt;/div&gt;</summary>
		<author><name>192.168.20.177</name></author>	</entry>

	</feed>
<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
  ga('create', 'UA-56589921-5', 'auto');
  ga('send', 'pageview');
</script>