SlideShare a Scribd company logo
Object Oriented
Programming
C++
Assignments
INDEX
Sr. No. Title Date Sign Grade
1 Bisection Method
2 Regula-Falsi Method
3 Secant Method
4 Newton-Raphson Method
5 Gauss-Jordan Method
6 Gauss-Elimination Method
7 Method of Least Squares
8 Euler’s Method
9 Runge-Kutta Method
BISECTION METHOD
Program:
#include<iostream.h>
#include<iomanip.h>
#include<math.h>
float f(float x)
{
return (x*sin(x)-1);
}
void bisect(float *x,float a,float b,int *itr)
{
*x=(a+b)/2;
++(*itr);
cout<<"Iteration No."<<setw(3)<<*itr<<"x="<<setw(7)
<<setprecision(5)<<*x<<endl;
}
int main()
{
int itr=0,maxitr;
float x,a,b,aerr,x1;
cout<<"Enter the value of a=t";
cin>>a;
cout<<"Enter the value of b=t";
cin>>b;
cout<<"Enter the Value of allowed error=t";
cin>>aerr;
cout<<"Enter the value of maximum iterations=t";
cin>>maxitr;
bisect(&x,a,b,&itr);
do
{
if(f(a)*f(x)<0)
b=x;
else
a=x;
bisect(&x1,a,b,&itr);
if(fabs(x1-x)<aerr)
{
cout<<"After "<<itr<<" itrations, Our Desired root is"
<<"="<<setw(6)<<setprecision(4)<<x1<<endl;
return 0;
}
x=x1;
}
while(itr<maxitr);
cout<<"Solution does not converge"<<"iteration not sufficient"
<<endl;
return 1;
}
Output:
REGULA-FALSI METHOD
Program:
#include<iostream.h>
#include<iomanip.h>
#include<math.h>
float f(float x)
{
return x*x*x-x-5;
}
void regula(float *x,float x0,float x1,float fx0,float fx1, int *itr)
{
*x=x0-((x1-x0)/(fx1-fx0))*fx0;
++(*itr);
cout<<"Iteration no."<<setw(3)<<*itr<<"x="<<setw(7)
<<setprecision(5)<<*x<<endl;
}
int main()
{
int itr=0,maxitr;
float x0,x1,x2,x3,aerr;
cout<<"Enter the value of x0=t";
cin>>x0;
cout<<"Enter the value of x1=t";
cin>>x1;
cout<<"Enter the value of allowed error=t";
cin>>aerr;
cout<<"Enter the value of maximum iteration=t";
cin>>maxitr;
regula(&x2,x0,x1,f(x0),f(x1),&itr);
do
{
if(f(x0)*f(x2)<0)
x1=x2;
else
x0=x2;
regula(&x3,x0,x1,f(x0),f(x1),&itr);
if(fabs(x3-x2)<aerr)
{
cout<<"After "<<itr<<" iterations,"<<"tOur desired root is="
<<setw(6)<<setprecision(4)<<x3<<endl;
return 0;
}
x2=x3;
}
while(itr<maxitr);
cout<<"Solution does not converge,"
<<"iteration not sufficient"<<endl;
return 1;
}
Output:
SECANT METHOD
Program:
#include<iostream.h>
#include<iomanip.h>
#include<math.h>
float f(float x)
{
return x*x*x-exp(x);
}
void secant(float *x,float x0,float x1,float fx0,float fx1, int *itr)
{
*x=x1-((x1-x0)/(fx1-fx0))*fx1;
++(*itr);
cout<<"Iteration no."<<setw(3)<<*itr<<"x="<<setw(7)
<<setprecision(5)<<*x<<endl;
}
int main()
{
int itr=0,maxitr;
float x0,x1,x2,x3,aerr;
cout<<"Enter the value of x0=t";
cin>>x0;
cout<<"Enter the value of x1=t";
cin>>x1;
cout<<"Enter the value of allowed errors=t";
cin>>aerr;
cout<<"Enter the value of maximum iterations=t";
cin>>maxitr;
secant(&x2,x0,x1,f(x0),f(x1),&itr);
do
{
x0=x1;
x1=x2;
secant(&x3,x0,x1,f(x0),f(x1),&itr);
if(fabs(x3-x2)<aerr)
{
cout<<"After "<<itr<<" iterations, Our desired root is="
<<setw(6)<<setprecision(4)<<x3<<endl;
return 0;
}
x2=x3;
}
while(itr<maxitr);
cout<<"Solution does not converge,"
<<"iterations not sufficient"<<endl;
return 1;
}
Output:
NEWTON RAPHSON METHOD
Program:
#include<iostream.h>
#include<iomanip.h>
#include<math.h>
float f(float x)
{
return cos(x)-x*x;
}
float df(float x)
{
return -sin(x)-2*x;
}
int main()
{
int itr,maxitr;
float h,x0,x1,aerr;
cout<<"Enter the value of x0=t";
cin>>x0;
cout<<"Enter the value of allowed error=t";
cin>>aerr;
cout<<"Enter the value of maximum iterations=t";
cin>>maxitr;
for(itr=1;itr<=maxitr;itr++)
{
h=f(x0)/df(x0);
x1=x0-h;
cout<<"Iteration no."<<setw(3)<<itr<<"x="<<setw(9)
<<setprecision(6)<<x1<<endl;
if(fabs(h)<aerr)
{
cout<<"After no. "<<setw(3)<<itr
<<" iterations,tOur desired root is="
<<setw(8)<<setprecision(6)<<x1;
return 0;
}
x0=x1;
}
cout<<"Iterations not sufficient,"
<<"Solution does not converge"<<endl;
return 1;
}
Output:
GAUSS-JORDAN METHOD
Program:
#include<iostream.h>
#include<iomanip.h>
#define N 3
int main()
{
float a[N][N+1],t;
int i,j,k;
cout<<"Enter the matrix elements row wise:-n";
for(i=0;i<N;i++)
{
for(j=0;j<N+1;j++)
{
cin>>a[i][j];
}
}
for(j=0;j<N;j++)
{
for(i=0;i<N;i++)
{
if(i!=j)
{
t=a[i][j]/a[j][j];
for(k=0;k<N+1;k++)
{
a[i][k]-=a[j][k]*t;
}
}
}
}
cout<<"The diagonal matrix is:- n";
for(i=0;i<N;i++)
{
for(j=0;j<N+1;j++)
{
cout<<setw(15)<<setprecision(4)<<a[i][j];
}
cout<<"n";
}
cout<<"n";
cout<<"The solution is:-n";
for(i=0;i<N;i++)
{
cout<<"x["<<i+1<<"]="<<setw(7)<<setprecision(3)
<<a[i][N]/a[i][i]<<endl;
}
return 0;
}
Output:
GAUSS ELIMINATION METHOD
Program:
#include<iostream.h>
#include<iomanip.h>
#include<math.h>
#define N 3
int main()
{
float a[N][N+1],x[N],t,s;
int i,j,k;
cout<<"Enter the matrix elements row wise:-n";
for(i=0;i<N;i++)
{
for(j=0;j<N+1;j++)
{
cin>>a[i][j];
}
}
for(j=0;j<N-1;j++)
{
for(i=j+1;i<N;i++)
{
t=a[i][j]/a[j][j];
for(k=0;k<N+1;k++)
{
a[i][k]-=a[j][k]*t;
}
}
}
cout<<"The upper triangular matrix is:- n";
for(i=0;i<N;i++)
{
for(j=0;j<N+1;j++)
{
cout<<setw(15)<<setprecision(4)<<a[i][j];
}
cout<<"n";
}
for(i=N-1;i>=0;i--)
{
s=0;
{
for(j=i+1;j<N;j++)
{
s+=a[i][j]*x[j];
}
x[i]=(a[i][N]-s)/a[i][i];
}
}
cout<<"n";
cout<<"The solution is:-n";
for(i=0;i<N;i++)
{
cout<<"x["<<i+1<<"]="<<setw(7)<<setprecision(3)<<x[i]<<endl;
}
return 0;
}
Output:
METHOD OF LEAST SQUARES
Program:
#include<iostream.h>
#include<iomanip.h>
int main()
{
float mat[3][4]={{0,0,0,0},{0,0,0,0},{0,0,0,0}};
float t,a,b,c,x,y,xsq;
int i,j,k,n;
cout<<"Enter the no. of pairs of observed values:";
cin>>n;
mat[0][0]=n;
for(i=0;i<n;i++)
{
cout<<"Pair no.:"<<i+1<<"n";
cin>>x>>y;
xsq=x*x;
mat[0][1]+=x;
mat[0][2]+=xsq;
mat[1][2]+=x*xsq;
mat[2][2]+=xsq*xsq;
mat[0][3]+=y;
mat[1][3]+=x*y;
mat[2][3]+=xsq*y;
}
mat[1][1]=mat[0][2];
mat[2][1]=mat[1][2];
mat[1][0]=mat[0][1];
mat[2][0]=mat[1][1];
cout<<"The Matrix is:-n";
for(i=0;i<3;i++)
{
for(j=0;j<4;j++)
{
cout<<setw(10)<<setprecision(4)<<mat[i][j];
}
cout<<"n";
}
for(j=0;j<3;j++)
{
for(i=0;i<3;i++)
{
if(i!=j)
{
t=mat[i][j]/mat[j][j];
for(k=0;k<4;k++)
{
mat[i][k]-=mat[j][k]*t;
}
}
}
}
a=mat[0][3]/mat[0][0];
b=mat[1][3]/mat[1][1];
c=mat[2][3]/mat[2][2];
cout<<setprecision(4)
<<"a="<<setw(5)<<a<<"n"
<<"b="<<setw(5)<<b<<"n"
<<"c="<<setw(5)<<c<<"n";
return 0;
}
Output:
EULER’S METHOD
Program:
#include<iostream.h>
#include<iomanip.h>
float df(float x,float y)
{
return (y-x)/(y+x);
}
int main()
{
float x0,y0,h,x,x1,y1;
cout<<"Enter the values of x0,y0,h,x:n";
cin>>x0>>y0>>h>>x;
x1=x0;
y1=y0;
while(1)
{
if(x1>x)
{
return 0;
}
y1+=h*df(x1,y1);
x1+=h;
cout<<"when x="<<setw(3)<<setprecision(2)<<x1<<"t"
<<"y="<<setw(3)<<setprecision(4)<<y1<<"n";
}
}
Output:
RUNGE-KUTTA METHOD
Program:
#include<iostream.h>
#include<iomanip.h>
float f(float x,float y)
{
return x+y*y;
}
int main()
{
float x0,y0,h,xn,x,y,k1,k2,k3,k4,k;
cout<<"Enter the values of x0,y0,h,xn:n";
cin>>x0>>y0>>h>>xn;
x=x0;
y=y0;
while(1)
{
if(x==xn)
{
break;
}
k1=h*f(x,y);
k2=h*f(x+h/2,y+k1/2);
k3=h*f(x+h/2,y+k2/2);
k4=h*f(x+h,y+k3);
k=(k1+(k2+k3)*2+k4)/6;
x+=h;
y+=k;
cout<<"When x="<<setprecision(4)<<setw(4)<<x<<setw(8)
<<"y="<<setprecision(4)<<setw(4)<<y<<endl;
}
return 0;
}
Output:
Ad

More Related Content

What's hot (20)

algebric solutions by newton raphson method and secant method
algebric solutions by newton raphson method and secant methodalgebric solutions by newton raphson method and secant method
algebric solutions by newton raphson method and secant method
Nagma Modi
 
Newton raphson method
Newton raphson methodNewton raphson method
Newton raphson method
Bijay Mishra
 
Study Material Numerical Differentiation and Integration
Study Material Numerical Differentiation and IntegrationStudy Material Numerical Differentiation and Integration
Study Material Numerical Differentiation and Integration
Meenakshisundaram N
 
Es272 ch6
Es272 ch6Es272 ch6
Es272 ch6
Batuhan Yıldırım
 
Presentation on Numerical Integration
Presentation on Numerical IntegrationPresentation on Numerical Integration
Presentation on Numerical Integration
Tausif Shahanshah
 
newton raphson method
newton raphson methodnewton raphson method
newton raphson method
Yogesh Bhargawa
 
Newton’s Forward & backward interpolation
Newton’s Forward &  backward interpolation Newton’s Forward &  backward interpolation
Newton’s Forward & backward interpolation
Meet Patel
 
Numerical analysis ppt
Numerical analysis pptNumerical analysis ppt
Numerical analysis ppt
MalathiNagarajan20
 
Cubic Spline Interpolation
Cubic Spline InterpolationCubic Spline Interpolation
Cubic Spline Interpolation
VARUN KUMAR
 
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
Minhas Kamal
 
Newton Raphson Method Using C Programming
Newton Raphson Method Using C Programming Newton Raphson Method Using C Programming
Newton Raphson Method Using C Programming
Md Abu Bakar Siddique
 
Importance of Numerical Methods in CSE.pptx
Importance of Numerical Methods in CSE.pptxImportance of Numerical Methods in CSE.pptx
Importance of Numerical Methods in CSE.pptx
Sanad Bhowmik
 
Secant method
Secant methodSecant method
Secant method
Zahra Saman
 
Newton cotes integration method
Newton cotes integration  methodNewton cotes integration  method
Newton cotes integration method
shashikant pabari
 
NUMERICAL INTEGRATION AND ITS APPLICATIONS
NUMERICAL INTEGRATION AND ITS APPLICATIONSNUMERICAL INTEGRATION AND ITS APPLICATIONS
NUMERICAL INTEGRATION AND ITS APPLICATIONS
GOWTHAMGOWSIK98
 
Bisection method
Bisection methodBisection method
Bisection method
Tirth Parmar
 
Secant method
Secant method Secant method
Secant method
Er. Rahul Jarariya
 
Bisection & Regual falsi methods
Bisection & Regual falsi methodsBisection & Regual falsi methods
Bisection & Regual falsi methods
Divya Bhatia
 
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
RishabhGupta238479
 
Power series convergence ,taylor & laurent's theorem
Power series  convergence ,taylor & laurent's theoremPower series  convergence ,taylor & laurent's theorem
Power series convergence ,taylor & laurent's theorem
PARIKH HARSHIL
 
algebric solutions by newton raphson method and secant method
algebric solutions by newton raphson method and secant methodalgebric solutions by newton raphson method and secant method
algebric solutions by newton raphson method and secant method
Nagma Modi
 
Newton raphson method
Newton raphson methodNewton raphson method
Newton raphson method
Bijay Mishra
 
Study Material Numerical Differentiation and Integration
Study Material Numerical Differentiation and IntegrationStudy Material Numerical Differentiation and Integration
Study Material Numerical Differentiation and Integration
Meenakshisundaram N
 
Presentation on Numerical Integration
Presentation on Numerical IntegrationPresentation on Numerical Integration
Presentation on Numerical Integration
Tausif Shahanshah
 
Newton’s Forward & backward interpolation
Newton’s Forward &  backward interpolation Newton’s Forward &  backward interpolation
Newton’s Forward & backward interpolation
Meet Patel
 
Cubic Spline Interpolation
Cubic Spline InterpolationCubic Spline Interpolation
Cubic Spline Interpolation
VARUN KUMAR
 
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
Minhas Kamal
 
Newton Raphson Method Using C Programming
Newton Raphson Method Using C Programming Newton Raphson Method Using C Programming
Newton Raphson Method Using C Programming
Md Abu Bakar Siddique
 
Importance of Numerical Methods in CSE.pptx
Importance of Numerical Methods in CSE.pptxImportance of Numerical Methods in CSE.pptx
Importance of Numerical Methods in CSE.pptx
Sanad Bhowmik
 
Newton cotes integration method
Newton cotes integration  methodNewton cotes integration  method
Newton cotes integration method
shashikant pabari
 
NUMERICAL INTEGRATION AND ITS APPLICATIONS
NUMERICAL INTEGRATION AND ITS APPLICATIONSNUMERICAL INTEGRATION AND ITS APPLICATIONS
NUMERICAL INTEGRATION AND ITS APPLICATIONS
GOWTHAMGOWSIK98
 
Bisection & Regual falsi methods
Bisection & Regual falsi methodsBisection & Regual falsi methods
Bisection & Regual falsi methods
Divya Bhatia
 
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
RishabhGupta238479
 
Power series convergence ,taylor & laurent's theorem
Power series  convergence ,taylor & laurent's theoremPower series  convergence ,taylor & laurent's theorem
Power series convergence ,taylor & laurent's theorem
PARIKH HARSHIL
 

Similar to Numerical Methods with Computer Programming (20)

C++ TUTORIAL 7
C++ TUTORIAL 7C++ TUTORIAL 7
C++ TUTORIAL 7
Farhan Ab Rahman
 
Modificacion del programa
Modificacion del programaModificacion del programa
Modificacion del programa
Mario José
 
C++ TUTORIAL 6
C++ TUTORIAL 6C++ TUTORIAL 6
C++ TUTORIAL 6
Farhan Ab Rahman
 
C++ TUTORIAL 10
C++ TUTORIAL 10C++ TUTORIAL 10
C++ TUTORIAL 10
Farhan Ab Rahman
 
include.docx
include.docxinclude.docx
include.docx
NhiPtaa
 
C++ file
C++ fileC++ file
C++ file
Mukund Trivedi
 
C++ file
C++ fileC++ file
C++ file
Mukund Trivedi
 
Seminar PSU 10.10.2014 mme
Seminar PSU 10.10.2014 mmeSeminar PSU 10.10.2014 mme
Seminar PSU 10.10.2014 mme
Vyacheslav Arbuzov
 
JavaScript Advanced - Useful methods to power up your code
JavaScript Advanced - Useful methods to power up your codeJavaScript Advanced - Useful methods to power up your code
JavaScript Advanced - Useful methods to power up your code
Laurence Svekis ✔
 
Assignment on Numerical Method C Code
Assignment on Numerical Method C CodeAssignment on Numerical Method C Code
Assignment on Numerical Method C Code
Syed Ahmed Zaki
 
Advanced Data Visualization in R- Somes Examples.
Advanced Data Visualization in R- Somes Examples.Advanced Data Visualization in R- Somes Examples.
Advanced Data Visualization in R- Somes Examples.
Dr. Volkan OBAN
 
Elm: give it a try
Elm: give it a tryElm: give it a try
Elm: give it a try
Eugene Zharkov
 
Cpp c++ 1
Cpp c++ 1Cpp c++ 1
Cpp c++ 1
Sltnalt Cosmology
 
Opp compile
Opp compileOpp compile
Opp compile
Muhammad Faiz
 
2 BytesC++ course_2014_c3_ function basics&parameters and overloading
2 BytesC++ course_2014_c3_ function basics&parameters and overloading2 BytesC++ course_2014_c3_ function basics&parameters and overloading
2 BytesC++ course_2014_c3_ function basics&parameters and overloading
kinan keshkeh
 
関数潮流(Function Tendency)
関数潮流(Function Tendency)関数潮流(Function Tendency)
関数潮流(Function Tendency)
riue
 
PythonOOP
PythonOOPPythonOOP
PythonOOP
Veera Pendyala
 
C++ TUTORIAL 9
C++ TUTORIAL 9C++ TUTORIAL 9
C++ TUTORIAL 9
Farhan Ab Rahman
 
Ee 3122 numerical methods and statistics sessional credit
Ee 3122 numerical methods and statistics sessional  creditEe 3122 numerical methods and statistics sessional  credit
Ee 3122 numerical methods and statistics sessional credit
Raihan Bin-Mofidul
 
C programs
C programsC programs
C programs
Azaj Khan
 
Modificacion del programa
Modificacion del programaModificacion del programa
Modificacion del programa
Mario José
 
include.docx
include.docxinclude.docx
include.docx
NhiPtaa
 
JavaScript Advanced - Useful methods to power up your code
JavaScript Advanced - Useful methods to power up your codeJavaScript Advanced - Useful methods to power up your code
JavaScript Advanced - Useful methods to power up your code
Laurence Svekis ✔
 
Assignment on Numerical Method C Code
Assignment on Numerical Method C CodeAssignment on Numerical Method C Code
Assignment on Numerical Method C Code
Syed Ahmed Zaki
 
Advanced Data Visualization in R- Somes Examples.
Advanced Data Visualization in R- Somes Examples.Advanced Data Visualization in R- Somes Examples.
Advanced Data Visualization in R- Somes Examples.
Dr. Volkan OBAN
 
2 BytesC++ course_2014_c3_ function basics&parameters and overloading
2 BytesC++ course_2014_c3_ function basics&parameters and overloading2 BytesC++ course_2014_c3_ function basics&parameters and overloading
2 BytesC++ course_2014_c3_ function basics&parameters and overloading
kinan keshkeh
 
関数潮流(Function Tendency)
関数潮流(Function Tendency)関数潮流(Function Tendency)
関数潮流(Function Tendency)
riue
 
Ee 3122 numerical methods and statistics sessional credit
Ee 3122 numerical methods and statistics sessional  creditEe 3122 numerical methods and statistics sessional  credit
Ee 3122 numerical methods and statistics sessional credit
Raihan Bin-Mofidul
 
Ad

More from Utsav Patel (14)

Geometric Dimensioning and Tolerancing
Geometric Dimensioning and TolerancingGeometric Dimensioning and Tolerancing
Geometric Dimensioning and Tolerancing
Utsav Patel
 
Energy Production from Slow Moving Water
Energy Production from Slow Moving WaterEnergy Production from Slow Moving Water
Energy Production from Slow Moving Water
Utsav Patel
 
Geothermal Energy Power Plant
Geothermal Energy Power PlantGeothermal Energy Power Plant
Geothermal Energy Power Plant
Utsav Patel
 
The Himalayas Mountain Range - Breathtaking Beauty
The Himalayas Mountain Range - Breathtaking BeautyThe Himalayas Mountain Range - Breathtaking Beauty
The Himalayas Mountain Range - Breathtaking Beauty
Utsav Patel
 
Gearless Power Transmission - Minor Project
Gearless Power Transmission - Minor ProjectGearless Power Transmission - Minor Project
Gearless Power Transmission - Minor Project
Utsav Patel
 
Electricity Production from Slow Moving Water - Poster Presentation
Electricity Production from Slow Moving Water - Poster PresentationElectricity Production from Slow Moving Water - Poster Presentation
Electricity Production from Slow Moving Water - Poster Presentation
Utsav Patel
 
Static and Fatigue Analysis of Pressure Vessel as per ASME Codes
Static and Fatigue Analysis of Pressure Vessel as per ASME CodesStatic and Fatigue Analysis of Pressure Vessel as per ASME Codes
Static and Fatigue Analysis of Pressure Vessel as per ASME Codes
Utsav Patel
 
ONGC Summer Training Report
ONGC Summer Training ReportONGC Summer Training Report
ONGC Summer Training Report
Utsav Patel
 
Gearbox Design Data with Drawings
Gearbox Design Data with DrawingsGearbox Design Data with Drawings
Gearbox Design Data with Drawings
Utsav Patel
 
Heat and Mass Transfer Practical Manual (C Coded)
Heat and Mass Transfer Practical Manual (C Coded)Heat and Mass Transfer Practical Manual (C Coded)
Heat and Mass Transfer Practical Manual (C Coded)
Utsav Patel
 
Design of Multi-plate clutch Report
Design of Multi-plate clutch ReportDesign of Multi-plate clutch Report
Design of Multi-plate clutch Report
Utsav Patel
 
Geothermal Energy Power Plant Report
Geothermal Energy Power Plant ReportGeothermal Energy Power Plant Report
Geothermal Energy Power Plant Report
Utsav Patel
 
Gearless Power Transmission - Project Report
Gearless Power Transmission - Project ReportGearless Power Transmission - Project Report
Gearless Power Transmission - Project Report
Utsav Patel
 
Ammann Apollo India Pvt Ltd - Industrial Training Report
Ammann Apollo India Pvt Ltd - Industrial Training ReportAmmann Apollo India Pvt Ltd - Industrial Training Report
Ammann Apollo India Pvt Ltd - Industrial Training Report
Utsav Patel
 
Geometric Dimensioning and Tolerancing
Geometric Dimensioning and TolerancingGeometric Dimensioning and Tolerancing
Geometric Dimensioning and Tolerancing
Utsav Patel
 
Energy Production from Slow Moving Water
Energy Production from Slow Moving WaterEnergy Production from Slow Moving Water
Energy Production from Slow Moving Water
Utsav Patel
 
Geothermal Energy Power Plant
Geothermal Energy Power PlantGeothermal Energy Power Plant
Geothermal Energy Power Plant
Utsav Patel
 
The Himalayas Mountain Range - Breathtaking Beauty
The Himalayas Mountain Range - Breathtaking BeautyThe Himalayas Mountain Range - Breathtaking Beauty
The Himalayas Mountain Range - Breathtaking Beauty
Utsav Patel
 
Gearless Power Transmission - Minor Project
Gearless Power Transmission - Minor ProjectGearless Power Transmission - Minor Project
Gearless Power Transmission - Minor Project
Utsav Patel
 
Electricity Production from Slow Moving Water - Poster Presentation
Electricity Production from Slow Moving Water - Poster PresentationElectricity Production from Slow Moving Water - Poster Presentation
Electricity Production from Slow Moving Water - Poster Presentation
Utsav Patel
 
Static and Fatigue Analysis of Pressure Vessel as per ASME Codes
Static and Fatigue Analysis of Pressure Vessel as per ASME CodesStatic and Fatigue Analysis of Pressure Vessel as per ASME Codes
Static and Fatigue Analysis of Pressure Vessel as per ASME Codes
Utsav Patel
 
ONGC Summer Training Report
ONGC Summer Training ReportONGC Summer Training Report
ONGC Summer Training Report
Utsav Patel
 
Gearbox Design Data with Drawings
Gearbox Design Data with DrawingsGearbox Design Data with Drawings
Gearbox Design Data with Drawings
Utsav Patel
 
Heat and Mass Transfer Practical Manual (C Coded)
Heat and Mass Transfer Practical Manual (C Coded)Heat and Mass Transfer Practical Manual (C Coded)
Heat and Mass Transfer Practical Manual (C Coded)
Utsav Patel
 
Design of Multi-plate clutch Report
Design of Multi-plate clutch ReportDesign of Multi-plate clutch Report
Design of Multi-plate clutch Report
Utsav Patel
 
Geothermal Energy Power Plant Report
Geothermal Energy Power Plant ReportGeothermal Energy Power Plant Report
Geothermal Energy Power Plant Report
Utsav Patel
 
Gearless Power Transmission - Project Report
Gearless Power Transmission - Project ReportGearless Power Transmission - Project Report
Gearless Power Transmission - Project Report
Utsav Patel
 
Ammann Apollo India Pvt Ltd - Industrial Training Report
Ammann Apollo India Pvt Ltd - Industrial Training ReportAmmann Apollo India Pvt Ltd - Industrial Training Report
Ammann Apollo India Pvt Ltd - Industrial Training Report
Utsav Patel
 
Ad

Recently uploaded (20)

6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
ijflsjournal087
 
Artificial intelligence and machine learning.pptx
Artificial intelligence and machine learning.pptxArtificial intelligence and machine learning.pptx
Artificial intelligence and machine learning.pptx
rakshanatarajan005
 
ML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdf
ML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdfML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdf
ML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdf
rameshwarchintamani
 
Design Optimization of Reinforced Concrete Waffle Slab Using Genetic Algorithm
Design Optimization of Reinforced Concrete Waffle Slab Using Genetic AlgorithmDesign Optimization of Reinforced Concrete Waffle Slab Using Genetic Algorithm
Design Optimization of Reinforced Concrete Waffle Slab Using Genetic Algorithm
Journal of Soft Computing in Civil Engineering
 
Mode-Wise Corridor Level Travel-Time Estimation Using Machine Learning Models
Mode-Wise Corridor Level Travel-Time Estimation Using Machine Learning ModelsMode-Wise Corridor Level Travel-Time Estimation Using Machine Learning Models
Mode-Wise Corridor Level Travel-Time Estimation Using Machine Learning Models
Journal of Soft Computing in Civil Engineering
 
Slide share PPT of SOx control technologies.pptx
Slide share PPT of SOx control technologies.pptxSlide share PPT of SOx control technologies.pptx
Slide share PPT of SOx control technologies.pptx
vvsasane
 
22PCOAM16 ML Unit 3 Full notes PDF & QB.pdf
22PCOAM16 ML Unit 3 Full notes PDF & QB.pdf22PCOAM16 ML Unit 3 Full notes PDF & QB.pdf
22PCOAM16 ML Unit 3 Full notes PDF & QB.pdf
Guru Nanak Technical Institutions
 
Autodesk Fusion 2025 Tutorial: User Interface
Autodesk Fusion 2025 Tutorial: User InterfaceAutodesk Fusion 2025 Tutorial: User Interface
Autodesk Fusion 2025 Tutorial: User Interface
Atif Razi
 
Working with USDOT UTCs: From Conception to Implementation
Working with USDOT UTCs: From Conception to ImplementationWorking with USDOT UTCs: From Conception to Implementation
Working with USDOT UTCs: From Conception to Implementation
Alabama Transportation Assistance Program
 
Agents chapter of Artificial intelligence
Agents chapter of Artificial intelligenceAgents chapter of Artificial intelligence
Agents chapter of Artificial intelligence
DebdeepMukherjee9
 
Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...
Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...
Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...
Journal of Soft Computing in Civil Engineering
 
JRR Tolkien’s Lord of the Rings: Was It Influenced by Nordic Mythology, Homer...
JRR Tolkien’s Lord of the Rings: Was It Influenced by Nordic Mythology, Homer...JRR Tolkien’s Lord of the Rings: Was It Influenced by Nordic Mythology, Homer...
JRR Tolkien’s Lord of the Rings: Was It Influenced by Nordic Mythology, Homer...
Reflections on Morality, Philosophy, and History
 
01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf
01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf
01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf
PawachMetharattanara
 
David Boutry - Specializes In AWS, Microservices And Python.pdf
David Boutry - Specializes In AWS, Microservices And Python.pdfDavid Boutry - Specializes In AWS, Microservices And Python.pdf
David Boutry - Specializes In AWS, Microservices And Python.pdf
David Boutry
 
Machine foundation notes for civil engineering students
Machine foundation notes for civil engineering studentsMachine foundation notes for civil engineering students
Machine foundation notes for civil engineering students
DYPCET
 
ATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ATAL 6 Days Online FDP Scheme Document 2025-26.pdfATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ssuserda39791
 
DED KOMINFO detail engginering design gedung
DED KOMINFO detail engginering design gedungDED KOMINFO detail engginering design gedung
DED KOMINFO detail engginering design gedung
nabilarizqifadhilah1
 
Lecture - 7 Canals of the topic of the civil engineering
Lecture - 7  Canals of the topic of the civil engineeringLecture - 7  Canals of the topic of the civil engineering
Lecture - 7 Canals of the topic of the civil engineering
MJawadkhan1
 
Evonik Overview Visiomer Specialty Methacrylates.pdf
Evonik Overview Visiomer Specialty Methacrylates.pdfEvonik Overview Visiomer Specialty Methacrylates.pdf
Evonik Overview Visiomer Specialty Methacrylates.pdf
szhang13
 
introduction technology technology tec.pptx
introduction technology technology tec.pptxintroduction technology technology tec.pptx
introduction technology technology tec.pptx
Iftikhar70
 
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
ijflsjournal087
 
Artificial intelligence and machine learning.pptx
Artificial intelligence and machine learning.pptxArtificial intelligence and machine learning.pptx
Artificial intelligence and machine learning.pptx
rakshanatarajan005
 
ML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdf
ML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdfML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdf
ML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdf
rameshwarchintamani
 
Slide share PPT of SOx control technologies.pptx
Slide share PPT of SOx control technologies.pptxSlide share PPT of SOx control technologies.pptx
Slide share PPT of SOx control technologies.pptx
vvsasane
 
Autodesk Fusion 2025 Tutorial: User Interface
Autodesk Fusion 2025 Tutorial: User InterfaceAutodesk Fusion 2025 Tutorial: User Interface
Autodesk Fusion 2025 Tutorial: User Interface
Atif Razi
 
Agents chapter of Artificial intelligence
Agents chapter of Artificial intelligenceAgents chapter of Artificial intelligence
Agents chapter of Artificial intelligence
DebdeepMukherjee9
 
01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf
01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf
01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf
PawachMetharattanara
 
David Boutry - Specializes In AWS, Microservices And Python.pdf
David Boutry - Specializes In AWS, Microservices And Python.pdfDavid Boutry - Specializes In AWS, Microservices And Python.pdf
David Boutry - Specializes In AWS, Microservices And Python.pdf
David Boutry
 
Machine foundation notes for civil engineering students
Machine foundation notes for civil engineering studentsMachine foundation notes for civil engineering students
Machine foundation notes for civil engineering students
DYPCET
 
ATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ATAL 6 Days Online FDP Scheme Document 2025-26.pdfATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ssuserda39791
 
DED KOMINFO detail engginering design gedung
DED KOMINFO detail engginering design gedungDED KOMINFO detail engginering design gedung
DED KOMINFO detail engginering design gedung
nabilarizqifadhilah1
 
Lecture - 7 Canals of the topic of the civil engineering
Lecture - 7  Canals of the topic of the civil engineeringLecture - 7  Canals of the topic of the civil engineering
Lecture - 7 Canals of the topic of the civil engineering
MJawadkhan1
 
Evonik Overview Visiomer Specialty Methacrylates.pdf
Evonik Overview Visiomer Specialty Methacrylates.pdfEvonik Overview Visiomer Specialty Methacrylates.pdf
Evonik Overview Visiomer Specialty Methacrylates.pdf
szhang13
 
introduction technology technology tec.pptx
introduction technology technology tec.pptxintroduction technology technology tec.pptx
introduction technology technology tec.pptx
Iftikhar70
 

Numerical Methods with Computer Programming

  翻译: