SlideShare a Scribd company logo
1 of 20
S.N.PATEL INSTITUTE OF TECHNOLOGY
AND RESEARCH CENTRE
Computational Method for Mechanical Engineering
Prepared by :
Padhiyar Brijesh R.
(170490728009)
Interpolation
Interpolation means to find values of
function f(x) for an x between
different x-values x0, x1…, xn at
which the values of f(x) are given.
NEWTON’S FORWARD
&
NEWTON’S BACKWARD
INTERPOLATION
NEWTON’S FORWARD INTERPOLATION
• Formula of Newton’s Forward Interpolation
𝑦 𝑛 𝑥 = 𝑦0 + 𝑝𝚫𝑦0 +
𝑝(𝑝 − 1)
𝚫2 𝑦0 +
𝑝(𝑝 − 1)(𝑝 − 2)
2! 3!
𝚫3 𝑦0 +⋯
+
𝑝(𝑝 − 1) (𝑝 − 2)…(𝑝 − 𝑛 + 1)
𝑛!
𝚫 𝑛 𝑦0
Here :- 𝑝 = 𝑥−𝑥0
ℎ
EXAMPLE
• Find The value Of 𝒕𝒂𝒏 0.12
𝑥 0.10 0.15 0.20 0.25 0.30
𝑦 = 𝑡𝑎𝑛 𝑥 0.1003 0.1511 0.2027 0.2553 0.3093
Solution
X Y Δ Δ2 Δ3 Δ4
0.10 0.1003
0.0508
0.15 0.1511 0.0008
0.0516 0.0002
0.20 0.2027 0.0010 0.0002
0.0526 0.0004
0.25 0.2553 0.0014
0.0540
0.30 0.3093
Applying Newton’s Forward Difference Interpolation Formula.
𝑦 𝑛 (x) = 𝑦0 + 𝑝𝚫𝑦0 + 𝚫2 𝑦0 +
𝑝(𝑝 − 1) 𝑝(𝑝 − 1) (𝑝 − 2)
2! 3!
𝚫3 𝑦0 +
𝑝(𝑝 − 1)(𝑝 − 2)(𝑝 − 3)
4!
𝚫4 𝑦0
Here 𝑦 𝑛 (x) = tan(0.12)
∴ 𝑝 = 𝑥−𝑥0
= 0.12−0.10
= 0.02
= 0.4
ℎ 0.05 0.05
∴ 𝑦 𝑛 (𝑥)= 0.1003 + 0.4( 0.0508)
(0.4−2)
+ 0.4 0.4−1
0.0008 + 0.4(0.4−1)
2 6 24
0.0002 + 0.4( 0.4−1)(0.4−2)(0.4−3)
0.0002
𝑦 𝑛 (x)= 0.1205
NEWTON’S BACKWARD INTERPOLATION
• Formula of Newton’s Backward Interpolation
𝑦 𝑛 (x) = 𝑦 𝑛 𝑝𝛁𝑦 𝑛 +
𝑝(𝑝 + 1)
2!
𝛁2 𝑦 𝑛 + ⋯+
𝑝(𝑝 − 1) … (𝑝 + 𝑛 − 1)
𝑛!
𝛁 𝑛 𝑦 𝑛
Here :- 𝑝 =
+
X - Xn
h
EXAMPLE
• Consider Following Tabular Values Determine y (300)
𝑥 50 100 150 200 250
𝑦 618 724 805 906 1032
Solution
X Y 𝛁 𝛁2 𝛁3 𝛁4
50 618
106
100 724 -25
81 45
150 805 20 -40
101 5
200 906 5
126
250 1032
Applying Newton’s Backward Difference interpolation Formula.
𝑦 𝑛 (𝑥 )= 𝑦0 + 𝑝𝛁𝑦 𝑛 +
𝑝(𝑝 − 1)
2!
𝛁2 𝑦 𝑛 +
𝑝(𝑝 − 1)(𝑝 − 2)
3!
𝛁3 𝑦 𝑛 +
𝑝(𝑝 − 1)(𝑝 − 2)(𝑝 − 3)
4!
𝛁4 𝑦 𝑛
Here, 𝑦 𝑛 (𝑥 ) = 𝑦 𝑛 (300)
∴ 𝑝 = 𝑥−𝑥 𝑛
= 300−250
= 1
ℎ 50
∴ 𝑦n(x) = 1032 + 126+
1(1+1)
2!
25 +
1( 1+1)(1+2)
3!
5 +
1( 1+1)(1+2)(1+3)
4!
(−40)
= 1032 + 126 + 25 + 5 −4
𝑦 𝑛(300) = 1148
NEWTON’S DIVIDED DIFFERENCE
INTERPOLATION
NEWTON’S DEVIDED
DIFFERENCE FORMULA
        0 0 0 1 0 1 0 1 2.....f x y x x x x x x x x x x x     
Example :
Find the polynomial of the lowest possible degree which assumes the values 3, 12,
15,-21 when x has the values 3, 2, 1,-1, respectively. Hence find f(0).
Solution
X Y Δ Δ2 Δ3
-1 -21
18
1 15 -7
-3 1
2 12 -3
-9
3 3
Using Newton’s divided difference formula, we get
f(x)=−21+(x − (−1)) * 18 +(x +1) (x − 1) * (−7) + (x + 1) (x − 1) (x − 2) * 1
= −21 + 18 (x + 1) + (x2 −1) (−7) + (x3 - 2x2 – x +2)
f(x) =x3 - 9x2 + 17x + 6
Hence f(0) = 6.
LANGRANGE’S INTERPOLATION
1 2
0
0 1 0 2 0
0 2
1
1 0 1 2 1
0 1
2
2 0 2 1 2
( )( )........( )
( )
( )( )........( )
( )( )........( )
( )( )........( )
( )( )........( )
+ .....
( )( )........( )
n
n
n
n
n
n
x x x x x x
F x y
x x x x x x
x x x x x x
y
x x x x x x
x x x x x x
y
x x x x x x
  

  
  

  
  
  
...
EXAMPLE
• Compute f(0.3) for the data
𝑥 0 1 3 4 7
f 1 3 49 129 813
1 2
0
0 1 0 2 0
0 2
1
1 0 1 2 1
0 1
2
2 0 2 1 2
( )( )........( )
( )
( )( )........( )
( )( )........( )
( )( )........( )
( )( )........( )
+ .....
( )( )........( )
n
n
n
n
n
n
x x x x x x
F x y
x x x x x x
x x x x x x
y
x x x x x x
x x x x x x
y
x x x x x x
  

  
  

  
  
  
...
(0.3−1)(0.3−3)(0.3−4)(0.3−7) (0.3−0)(0.3−3)(0.3−4)(0.3−7) (0.3−0)(0.3−1)(0.3−4)(0.3−7)
(0.3−0)(0.3−1)(0.3−3)(0.3−7) (0.3−0)(0.3−1)(0.3−3)(0.3−4)
(−1)(−3)(−4)(−7) (1)(-2)(−3)(−6) (3)(2)(−1)(−4)
(4)(3)(1)(−3) (4)(3)(6)(7)
*1+= *49+*3+
*813*129+
= 1.831
Thank you…

More Related Content

What's hot

Newton's forward difference
Newton's forward differenceNewton's forward difference
Newton's forward differenceRaj Parekh
 
Newton Forward Difference Interpolation Method
Newton Forward Difference Interpolation MethodNewton Forward Difference Interpolation Method
Newton Forward Difference Interpolation MethodAdeel Rasheed
 
Echelon and reduced echelon form & Filters
Echelon and reduced echelon form & FiltersEchelon and reduced echelon form & Filters
Echelon and reduced echelon form & FiltersZahid Ali
 
Digital logic circuits important question and answers for 5 units
Digital logic circuits important question and answers for 5 unitsDigital logic circuits important question and answers for 5 units
Digital logic circuits important question and answers for 5 unitsLekashri Subramanian
 
Newton's Forward/Backward Difference Interpolation
Newton's Forward/Backward  Difference InterpolationNewton's Forward/Backward  Difference Interpolation
Newton's Forward/Backward Difference InterpolationVARUN KUMAR
 
Interpolation in Numerical Methods
Interpolation in Numerical Methods Interpolation in Numerical Methods
Interpolation in Numerical Methods Dr. Tushar J Bhatt
 
Number system in Digital Electronics
Number system in Digital ElectronicsNumber system in Digital Electronics
Number system in Digital ElectronicsJanki Shah
 
Laplace transform & fourier series
Laplace transform & fourier seriesLaplace transform & fourier series
Laplace transform & fourier seriesvaibhav tailor
 
Eigen value and eigen vector
Eigen value and eigen vectorEigen value and eigen vector
Eigen value and eigen vectorRutvij Patel
 
Transformations (complex variable & numerical method)
Transformations (complex variable & numerical method)Transformations (complex variable & numerical method)
Transformations (complex variable & numerical method)Digvijaysinh Gohil
 
Inner product spaces
Inner product spacesInner product spaces
Inner product spacesEasyStudy3
 
Lu decomposition
Lu decompositionLu decomposition
Lu decompositiongilandio
 
Bcd to excess 3 code converter
Bcd to excess 3 code converterBcd to excess 3 code converter
Bcd to excess 3 code converterUshaswini Chowdary
 
Eigenvalue problems .ppt
Eigenvalue problems .pptEigenvalue problems .ppt
Eigenvalue problems .pptSelf-employed
 

What's hot (20)

Newton's forward difference
Newton's forward differenceNewton's forward difference
Newton's forward difference
 
Vector space
Vector spaceVector space
Vector space
 
Newton Forward Difference Interpolation Method
Newton Forward Difference Interpolation MethodNewton Forward Difference Interpolation Method
Newton Forward Difference Interpolation Method
 
Fourier integral
Fourier integralFourier integral
Fourier integral
 
Echelon and reduced echelon form & Filters
Echelon and reduced echelon form & FiltersEchelon and reduced echelon form & Filters
Echelon and reduced echelon form & Filters
 
Jacobi method
Jacobi methodJacobi method
Jacobi method
 
Digital logic circuits important question and answers for 5 units
Digital logic circuits important question and answers for 5 unitsDigital logic circuits important question and answers for 5 units
Digital logic circuits important question and answers for 5 units
 
Newton's Forward/Backward Difference Interpolation
Newton's Forward/Backward  Difference InterpolationNewton's Forward/Backward  Difference Interpolation
Newton's Forward/Backward Difference Interpolation
 
Vector spaces
Vector spaces Vector spaces
Vector spaces
 
Interpolation in Numerical Methods
Interpolation in Numerical Methods Interpolation in Numerical Methods
Interpolation in Numerical Methods
 
Number system in Digital Electronics
Number system in Digital ElectronicsNumber system in Digital Electronics
Number system in Digital Electronics
 
Laplace transform & fourier series
Laplace transform & fourier seriesLaplace transform & fourier series
Laplace transform & fourier series
 
Interpolation
InterpolationInterpolation
Interpolation
 
Eigen value and eigen vector
Eigen value and eigen vectorEigen value and eigen vector
Eigen value and eigen vector
 
Transformations (complex variable & numerical method)
Transformations (complex variable & numerical method)Transformations (complex variable & numerical method)
Transformations (complex variable & numerical method)
 
Fourier series
Fourier seriesFourier series
Fourier series
 
Inner product spaces
Inner product spacesInner product spaces
Inner product spaces
 
Lu decomposition
Lu decompositionLu decomposition
Lu decomposition
 
Bcd to excess 3 code converter
Bcd to excess 3 code converterBcd to excess 3 code converter
Bcd to excess 3 code converter
 
Eigenvalue problems .ppt
Eigenvalue problems .pptEigenvalue problems .ppt
Eigenvalue problems .ppt
 

Similar to Computational Methods for Mechanical Engineering Interpolation Techniques

Interpolation In Numerical Methods.
 Interpolation In Numerical Methods. Interpolation In Numerical Methods.
Interpolation In Numerical Methods.Abu Kaisar
 
Newton divided difference interpolation
Newton divided difference interpolationNewton divided difference interpolation
Newton divided difference interpolationVISHAL DONGA
 
Interpolation functions
Interpolation functionsInterpolation functions
Interpolation functionsTarun Gehlot
 
138191 rvsp lecture notes
138191 rvsp lecture notes138191 rvsp lecture notes
138191 rvsp lecture notesAhmed Tayeh
 
1. newtonsforwardbackwordinterpolation-190305095001.pdf
1. newtonsforwardbackwordinterpolation-190305095001.pdf1. newtonsforwardbackwordinterpolation-190305095001.pdf
1. newtonsforwardbackwordinterpolation-190305095001.pdfFaisalMehmood887349
 
Delos-Santos-Analyn-M.-_Repoter-No.-1-Multiplication-and-Division-of-Polynomi...
Delos-Santos-Analyn-M.-_Repoter-No.-1-Multiplication-and-Division-of-Polynomi...Delos-Santos-Analyn-M.-_Repoter-No.-1-Multiplication-and-Division-of-Polynomi...
Delos-Santos-Analyn-M.-_Repoter-No.-1-Multiplication-and-Division-of-Polynomi...polanesgumiran
 
Rosser's theorem
Rosser's theoremRosser's theorem
Rosser's theoremWathna
 
PROBABILITY DISTRIBUTION
PROBABILITY DISTRIBUTIONPROBABILITY DISTRIBUTION
PROBABILITY DISTRIBUTIONshahzadebaujiti
 
Newton’s Divided Difference Interpolation 18.pptx
Newton’s Divided Difference Interpolation 18.pptxNewton’s Divided Difference Interpolation 18.pptx
Newton’s Divided Difference Interpolation 18.pptxRishabhGupta238479
 
differential-calculus-1-23.pdf
differential-calculus-1-23.pdfdifferential-calculus-1-23.pdf
differential-calculus-1-23.pdfIILSASTOWER
 
Sbma 4603 numerical methods Assignment
Sbma 4603 numerical methods AssignmentSbma 4603 numerical methods Assignment
Sbma 4603 numerical methods AssignmentSaidatina Khadijah
 
interpolation-190605141327 (1).pptx
interpolation-190605141327 (1).pptxinterpolation-190605141327 (1).pptx
interpolation-190605141327 (1).pptxsinghakhil952
 
interpolation-190605141327 (1).pptx
interpolation-190605141327 (1).pptxinterpolation-190605141327 (1).pptx
interpolation-190605141327 (1).pptxsinghakhil952
 
Study Material Numerical Differentiation and Integration
Study Material Numerical Differentiation and IntegrationStudy Material Numerical Differentiation and Integration
Study Material Numerical Differentiation and IntegrationMeenakshisundaram N
 
Fórmulas de Taylor
Fórmulas de TaylorFórmulas de Taylor
Fórmulas de TaylorKike Prieto
 

Similar to Computational Methods for Mechanical Engineering Interpolation Techniques (20)

Interpolation In Numerical Methods.
 Interpolation In Numerical Methods. Interpolation In Numerical Methods.
Interpolation In Numerical Methods.
 
Newton divided difference interpolation
Newton divided difference interpolationNewton divided difference interpolation
Newton divided difference interpolation
 
Interpolation functions
Interpolation functionsInterpolation functions
Interpolation functions
 
Numerical Methods and Analysis
Numerical Methods and AnalysisNumerical Methods and Analysis
Numerical Methods and Analysis
 
138191 rvsp lecture notes
138191 rvsp lecture notes138191 rvsp lecture notes
138191 rvsp lecture notes
 
1. newtonsforwardbackwordinterpolation-190305095001.pdf
1. newtonsforwardbackwordinterpolation-190305095001.pdf1. newtonsforwardbackwordinterpolation-190305095001.pdf
1. newtonsforwardbackwordinterpolation-190305095001.pdf
 
maths ppt.pdf
maths ppt.pdfmaths ppt.pdf
maths ppt.pdf
 
maths ppt.pdf
maths ppt.pdfmaths ppt.pdf
maths ppt.pdf
 
Delos-Santos-Analyn-M.-_Repoter-No.-1-Multiplication-and-Division-of-Polynomi...
Delos-Santos-Analyn-M.-_Repoter-No.-1-Multiplication-and-Division-of-Polynomi...Delos-Santos-Analyn-M.-_Repoter-No.-1-Multiplication-and-Division-of-Polynomi...
Delos-Santos-Analyn-M.-_Repoter-No.-1-Multiplication-and-Division-of-Polynomi...
 
Rosser's theorem
Rosser's theoremRosser's theorem
Rosser's theorem
 
PROBABILITY DISTRIBUTION
PROBABILITY DISTRIBUTIONPROBABILITY DISTRIBUTION
PROBABILITY DISTRIBUTION
 
Newton’s Divided Difference Interpolation 18.pptx
Newton’s Divided Difference Interpolation 18.pptxNewton’s Divided Difference Interpolation 18.pptx
Newton’s Divided Difference Interpolation 18.pptx
 
Fismat chapter 4
Fismat chapter 4Fismat chapter 4
Fismat chapter 4
 
differential-calculus-1-23.pdf
differential-calculus-1-23.pdfdifferential-calculus-1-23.pdf
differential-calculus-1-23.pdf
 
Sbma 4603 numerical methods Assignment
Sbma 4603 numerical methods AssignmentSbma 4603 numerical methods Assignment
Sbma 4603 numerical methods Assignment
 
interpolation-190605141327 (1).pptx
interpolation-190605141327 (1).pptxinterpolation-190605141327 (1).pptx
interpolation-190605141327 (1).pptx
 
interpolation-190605141327 (1).pptx
interpolation-190605141327 (1).pptxinterpolation-190605141327 (1).pptx
interpolation-190605141327 (1).pptx
 
Study Material Numerical Differentiation and Integration
Study Material Numerical Differentiation and IntegrationStudy Material Numerical Differentiation and Integration
Study Material Numerical Differentiation and Integration
 
Fórmulas de Taylor
Fórmulas de TaylorFórmulas de Taylor
Fórmulas de Taylor
 
Interpolation.pptx
Interpolation.pptxInterpolation.pptx
Interpolation.pptx
 

Recently uploaded

Unlocking the Potential: Deep dive into ocean of Ceramic Magnets.pptx
Unlocking  the Potential: Deep dive into ocean of Ceramic Magnets.pptxUnlocking  the Potential: Deep dive into ocean of Ceramic Magnets.pptx
Unlocking the Potential: Deep dive into ocean of Ceramic Magnets.pptxanandsmhk
 
STERILITY TESTING OF PHARMACEUTICALS ppt by DR.C.P.PRINCE
STERILITY TESTING OF PHARMACEUTICALS ppt by DR.C.P.PRINCESTERILITY TESTING OF PHARMACEUTICALS ppt by DR.C.P.PRINCE
STERILITY TESTING OF PHARMACEUTICALS ppt by DR.C.P.PRINCEPRINCE C P
 
Analytical Profile of Coleus Forskohlii | Forskolin .pptx
Analytical Profile of Coleus Forskohlii | Forskolin .pptxAnalytical Profile of Coleus Forskohlii | Forskolin .pptx
Analytical Profile of Coleus Forskohlii | Forskolin .pptxSwapnil Therkar
 
Artificial Intelligence In Microbiology by Dr. Prince C P
Artificial Intelligence In Microbiology by Dr. Prince C PArtificial Intelligence In Microbiology by Dr. Prince C P
Artificial Intelligence In Microbiology by Dr. Prince C PPRINCE C P
 
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...Sérgio Sacani
 
Disentangling the origin of chemical differences using GHOST
Disentangling the origin of chemical differences using GHOSTDisentangling the origin of chemical differences using GHOST
Disentangling the origin of chemical differences using GHOSTSérgio Sacani
 
Stunning ➥8448380779▻ Call Girls In Panchshil Enclave Delhi NCR
Stunning ➥8448380779▻ Call Girls In Panchshil Enclave Delhi NCRStunning ➥8448380779▻ Call Girls In Panchshil Enclave Delhi NCR
Stunning ➥8448380779▻ Call Girls In Panchshil Enclave Delhi NCRDelhi Call girls
 
Orientation, design and principles of polyhouse
Orientation, design and principles of polyhouseOrientation, design and principles of polyhouse
Orientation, design and principles of polyhousejana861314
 
Biological Classification BioHack (3).pdf
Biological Classification BioHack (3).pdfBiological Classification BioHack (3).pdf
Biological Classification BioHack (3).pdfmuntazimhurra
 
A relative description on Sonoporation.pdf
A relative description on Sonoporation.pdfA relative description on Sonoporation.pdf
A relative description on Sonoporation.pdfnehabiju2046
 
Types of different blotting techniques.pptx
Types of different blotting techniques.pptxTypes of different blotting techniques.pptx
Types of different blotting techniques.pptxkhadijarafiq2012
 
Cultivation of KODO MILLET . made by Ghanshyam pptx
Cultivation of KODO MILLET . made by Ghanshyam pptxCultivation of KODO MILLET . made by Ghanshyam pptx
Cultivation of KODO MILLET . made by Ghanshyam pptxpradhanghanshyam7136
 
Nanoparticles synthesis and characterization​ ​
Nanoparticles synthesis and characterization​  ​Nanoparticles synthesis and characterization​  ​
Nanoparticles synthesis and characterization​ ​kaibalyasahoo82800
 
Work, Energy and Power for class 10 ICSE Physics
Work, Energy and Power for class 10 ICSE PhysicsWork, Energy and Power for class 10 ICSE Physics
Work, Energy and Power for class 10 ICSE Physicsvishikhakeshava1
 
Presentation Vikram Lander by Vedansh Gupta.pptx
Presentation Vikram Lander by Vedansh Gupta.pptxPresentation Vikram Lander by Vedansh Gupta.pptx
Presentation Vikram Lander by Vedansh Gupta.pptxgindu3009
 
Physiochemical properties of nanomaterials and its nanotoxicity.pptx
Physiochemical properties of nanomaterials and its nanotoxicity.pptxPhysiochemical properties of nanomaterials and its nanotoxicity.pptx
Physiochemical properties of nanomaterials and its nanotoxicity.pptxAArockiyaNisha
 
Is RISC-V ready for HPC workload? Maybe?
Is RISC-V ready for HPC workload? Maybe?Is RISC-V ready for HPC workload? Maybe?
Is RISC-V ready for HPC workload? Maybe?Patrick Diehl
 
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...Lokesh Kothari
 
Caco-2 cell permeability assay for drug absorption
Caco-2 cell permeability assay for drug absorptionCaco-2 cell permeability assay for drug absorption
Caco-2 cell permeability assay for drug absorptionPriyansha Singh
 

Recently uploaded (20)

Unlocking the Potential: Deep dive into ocean of Ceramic Magnets.pptx
Unlocking  the Potential: Deep dive into ocean of Ceramic Magnets.pptxUnlocking  the Potential: Deep dive into ocean of Ceramic Magnets.pptx
Unlocking the Potential: Deep dive into ocean of Ceramic Magnets.pptx
 
STERILITY TESTING OF PHARMACEUTICALS ppt by DR.C.P.PRINCE
STERILITY TESTING OF PHARMACEUTICALS ppt by DR.C.P.PRINCESTERILITY TESTING OF PHARMACEUTICALS ppt by DR.C.P.PRINCE
STERILITY TESTING OF PHARMACEUTICALS ppt by DR.C.P.PRINCE
 
Analytical Profile of Coleus Forskohlii | Forskolin .pptx
Analytical Profile of Coleus Forskohlii | Forskolin .pptxAnalytical Profile of Coleus Forskohlii | Forskolin .pptx
Analytical Profile of Coleus Forskohlii | Forskolin .pptx
 
Artificial Intelligence In Microbiology by Dr. Prince C P
Artificial Intelligence In Microbiology by Dr. Prince C PArtificial Intelligence In Microbiology by Dr. Prince C P
Artificial Intelligence In Microbiology by Dr. Prince C P
 
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...
 
Disentangling the origin of chemical differences using GHOST
Disentangling the origin of chemical differences using GHOSTDisentangling the origin of chemical differences using GHOST
Disentangling the origin of chemical differences using GHOST
 
Stunning ➥8448380779▻ Call Girls In Panchshil Enclave Delhi NCR
Stunning ➥8448380779▻ Call Girls In Panchshil Enclave Delhi NCRStunning ➥8448380779▻ Call Girls In Panchshil Enclave Delhi NCR
Stunning ➥8448380779▻ Call Girls In Panchshil Enclave Delhi NCR
 
Orientation, design and principles of polyhouse
Orientation, design and principles of polyhouseOrientation, design and principles of polyhouse
Orientation, design and principles of polyhouse
 
Biological Classification BioHack (3).pdf
Biological Classification BioHack (3).pdfBiological Classification BioHack (3).pdf
Biological Classification BioHack (3).pdf
 
A relative description on Sonoporation.pdf
A relative description on Sonoporation.pdfA relative description on Sonoporation.pdf
A relative description on Sonoporation.pdf
 
9953056974 Young Call Girls In Mahavir enclave Indian Quality Escort service
9953056974 Young Call Girls In Mahavir enclave Indian Quality Escort service9953056974 Young Call Girls In Mahavir enclave Indian Quality Escort service
9953056974 Young Call Girls In Mahavir enclave Indian Quality Escort service
 
Types of different blotting techniques.pptx
Types of different blotting techniques.pptxTypes of different blotting techniques.pptx
Types of different blotting techniques.pptx
 
Cultivation of KODO MILLET . made by Ghanshyam pptx
Cultivation of KODO MILLET . made by Ghanshyam pptxCultivation of KODO MILLET . made by Ghanshyam pptx
Cultivation of KODO MILLET . made by Ghanshyam pptx
 
Nanoparticles synthesis and characterization​ ​
Nanoparticles synthesis and characterization​  ​Nanoparticles synthesis and characterization​  ​
Nanoparticles synthesis and characterization​ ​
 
Work, Energy and Power for class 10 ICSE Physics
Work, Energy and Power for class 10 ICSE PhysicsWork, Energy and Power for class 10 ICSE Physics
Work, Energy and Power for class 10 ICSE Physics
 
Presentation Vikram Lander by Vedansh Gupta.pptx
Presentation Vikram Lander by Vedansh Gupta.pptxPresentation Vikram Lander by Vedansh Gupta.pptx
Presentation Vikram Lander by Vedansh Gupta.pptx
 
Physiochemical properties of nanomaterials and its nanotoxicity.pptx
Physiochemical properties of nanomaterials and its nanotoxicity.pptxPhysiochemical properties of nanomaterials and its nanotoxicity.pptx
Physiochemical properties of nanomaterials and its nanotoxicity.pptx
 
Is RISC-V ready for HPC workload? Maybe?
Is RISC-V ready for HPC workload? Maybe?Is RISC-V ready for HPC workload? Maybe?
Is RISC-V ready for HPC workload? Maybe?
 
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
 
Caco-2 cell permeability assay for drug absorption
Caco-2 cell permeability assay for drug absorptionCaco-2 cell permeability assay for drug absorption
Caco-2 cell permeability assay for drug absorption
 

Computational Methods for Mechanical Engineering Interpolation Techniques

  • 1. S.N.PATEL INSTITUTE OF TECHNOLOGY AND RESEARCH CENTRE Computational Method for Mechanical Engineering Prepared by : Padhiyar Brijesh R. (170490728009)
  • 2. Interpolation Interpolation means to find values of function f(x) for an x between different x-values x0, x1…, xn at which the values of f(x) are given.
  • 4. NEWTON’S FORWARD INTERPOLATION • Formula of Newton’s Forward Interpolation 𝑦 𝑛 𝑥 = 𝑦0 + 𝑝𝚫𝑦0 + 𝑝(𝑝 − 1) 𝚫2 𝑦0 + 𝑝(𝑝 − 1)(𝑝 − 2) 2! 3! 𝚫3 𝑦0 +⋯ + 𝑝(𝑝 − 1) (𝑝 − 2)…(𝑝 − 𝑛 + 1) 𝑛! 𝚫 𝑛 𝑦0 Here :- 𝑝 = 𝑥−𝑥0 ℎ
  • 5. EXAMPLE • Find The value Of 𝒕𝒂𝒏 0.12 𝑥 0.10 0.15 0.20 0.25 0.30 𝑦 = 𝑡𝑎𝑛 𝑥 0.1003 0.1511 0.2027 0.2553 0.3093
  • 6. Solution X Y Δ Δ2 Δ3 Δ4 0.10 0.1003 0.0508 0.15 0.1511 0.0008 0.0516 0.0002 0.20 0.2027 0.0010 0.0002 0.0526 0.0004 0.25 0.2553 0.0014 0.0540 0.30 0.3093
  • 7. Applying Newton’s Forward Difference Interpolation Formula. 𝑦 𝑛 (x) = 𝑦0 + 𝑝𝚫𝑦0 + 𝚫2 𝑦0 + 𝑝(𝑝 − 1) 𝑝(𝑝 − 1) (𝑝 − 2) 2! 3! 𝚫3 𝑦0 + 𝑝(𝑝 − 1)(𝑝 − 2)(𝑝 − 3) 4! 𝚫4 𝑦0 Here 𝑦 𝑛 (x) = tan(0.12) ∴ 𝑝 = 𝑥−𝑥0 = 0.12−0.10 = 0.02 = 0.4 ℎ 0.05 0.05 ∴ 𝑦 𝑛 (𝑥)= 0.1003 + 0.4( 0.0508) (0.4−2) + 0.4 0.4−1 0.0008 + 0.4(0.4−1) 2 6 24 0.0002 + 0.4( 0.4−1)(0.4−2)(0.4−3) 0.0002 𝑦 𝑛 (x)= 0.1205
  • 8. NEWTON’S BACKWARD INTERPOLATION • Formula of Newton’s Backward Interpolation 𝑦 𝑛 (x) = 𝑦 𝑛 𝑝𝛁𝑦 𝑛 + 𝑝(𝑝 + 1) 2! 𝛁2 𝑦 𝑛 + ⋯+ 𝑝(𝑝 − 1) … (𝑝 + 𝑛 − 1) 𝑛! 𝛁 𝑛 𝑦 𝑛 Here :- 𝑝 = + X - Xn h
  • 9. EXAMPLE • Consider Following Tabular Values Determine y (300) 𝑥 50 100 150 200 250 𝑦 618 724 805 906 1032
  • 10. Solution X Y 𝛁 𝛁2 𝛁3 𝛁4 50 618 106 100 724 -25 81 45 150 805 20 -40 101 5 200 906 5 126 250 1032
  • 11. Applying Newton’s Backward Difference interpolation Formula. 𝑦 𝑛 (𝑥 )= 𝑦0 + 𝑝𝛁𝑦 𝑛 + 𝑝(𝑝 − 1) 2! 𝛁2 𝑦 𝑛 + 𝑝(𝑝 − 1)(𝑝 − 2) 3! 𝛁3 𝑦 𝑛 + 𝑝(𝑝 − 1)(𝑝 − 2)(𝑝 − 3) 4! 𝛁4 𝑦 𝑛 Here, 𝑦 𝑛 (𝑥 ) = 𝑦 𝑛 (300) ∴ 𝑝 = 𝑥−𝑥 𝑛 = 300−250 = 1 ℎ 50 ∴ 𝑦n(x) = 1032 + 126+ 1(1+1) 2! 25 + 1( 1+1)(1+2) 3! 5 + 1( 1+1)(1+2)(1+3) 4! (−40) = 1032 + 126 + 25 + 5 −4 𝑦 𝑛(300) = 1148
  • 13. NEWTON’S DEVIDED DIFFERENCE FORMULA         0 0 0 1 0 1 0 1 2.....f x y x x x x x x x x x x x     
  • 14. Example : Find the polynomial of the lowest possible degree which assumes the values 3, 12, 15,-21 when x has the values 3, 2, 1,-1, respectively. Hence find f(0).
  • 15. Solution X Y Δ Δ2 Δ3 -1 -21 18 1 15 -7 -3 1 2 12 -3 -9 3 3
  • 16. Using Newton’s divided difference formula, we get f(x)=−21+(x − (−1)) * 18 +(x +1) (x − 1) * (−7) + (x + 1) (x − 1) (x − 2) * 1 = −21 + 18 (x + 1) + (x2 −1) (−7) + (x3 - 2x2 – x +2) f(x) =x3 - 9x2 + 17x + 6 Hence f(0) = 6.
  • 17. LANGRANGE’S INTERPOLATION 1 2 0 0 1 0 2 0 0 2 1 1 0 1 2 1 0 1 2 2 0 2 1 2 ( )( )........( ) ( ) ( )( )........( ) ( )( )........( ) ( )( )........( ) ( )( )........( ) + ..... ( )( )........( ) n n n n n n x x x x x x F x y x x x x x x x x x x x x y x x x x x x x x x x x x y x x x x x x                     ...
  • 18. EXAMPLE • Compute f(0.3) for the data 𝑥 0 1 3 4 7 f 1 3 49 129 813
  • 19. 1 2 0 0 1 0 2 0 0 2 1 1 0 1 2 1 0 1 2 2 0 2 1 2 ( )( )........( ) ( ) ( )( )........( ) ( )( )........( ) ( )( )........( ) ( )( )........( ) + ..... ( )( )........( ) n n n n n n x x x x x x F x y x x x x x x x x x x x x y x x x x x x x x x x x x y x x x x x x                     ... (0.3−1)(0.3−3)(0.3−4)(0.3−7) (0.3−0)(0.3−3)(0.3−4)(0.3−7) (0.3−0)(0.3−1)(0.3−4)(0.3−7) (0.3−0)(0.3−1)(0.3−3)(0.3−7) (0.3−0)(0.3−1)(0.3−3)(0.3−4) (−1)(−3)(−4)(−7) (1)(-2)(−3)(−6) (3)(2)(−1)(−4) (4)(3)(1)(−3) (4)(3)(6)(7) *1+= *49+*3+ *813*129+ = 1.831