100% found this document useful (1 vote)
135 views5 pages

MTH603 4th Quiz 2023

The document discusses various numerical integration methods including trapezoidal rule, Simpson's rule, and Runge-Kutta method. It provides explanations of these methods and their applications for numerically evaluating definite integrals of tabular functions and double integrals. It also discusses the accuracy of different numerical methods and how techniques like Richardson extrapolation and Romberg integration can improve the accuracy.

Uploaded by

CyberSite Status
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
135 views5 pages

MTH603 4th Quiz 2023

The document discusses various numerical integration methods including trapezoidal rule, Simpson's rule, and Runge-Kutta method. It provides explanations of these methods and their applications for numerically evaluating definite integrals of tabular functions and double integrals. It also discusses the accuracy of different numerical methods and how techniques like Richardson extrapolation and Romberg integration can improve the accuracy.

Uploaded by

CyberSite Status
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

MTH603 Numerical Analysis Final Term MCQs

These reasons lead towards the numerical integration methods:


1. Integrand is given in tabular from
2. Analytical evaluation of integral is impossible
3. Analytical evaluation of integral is very complicated

While employing Trapezoidal and Simpson Rules to evaluate the double integral numerically, by
using Trapezoidal and Simpson rule over Plan Region.
Runge-Kutta’s formula:

In double integration, we keep one variable say x fixed and Varying the other variable y.
Trapezoidal rule of integration of a definite integral is of o(h2)
 O(h^1): This is the order of error for the trapezoidal rule when the function f(x) is a linear
function.
 O(h^2): This is the order of error for the trapezoidal rule in general.
 O(h^3): This is the order of error for the trapezoidal rule when the function f(x) is a
quadratic function.
 O(h^4): This is the order of error for the trapezoidal rule when the function f(x) is a cubic
function.
The following method is simplest one to integrate numerically a given tabular function but give
more error: Trapezoidal method
The predictor-corrector method an explicit method.
The area of a trapezoidal is obtained by adding the area of a Rectangle and a Triangle.
Multistep method improves the accuracy of the answer at each step.
At which of the following points the maximum value of 2 nd derivative of function f(x) = -(2/x) in
the interval: [1,4] exits at x = 4.
In Simpson’s rule, we can estimate the integral by adding the areas under the parabolic arcs
through three successive points.
Adams-Bashforth is a multistep method. (True)
Simpson’s rule is a numerical method that approximates the value of a definite integral by using
Quadratic polynomials.
Trapezoidal and Simpson’s integration are just a linear combination of values of the given
function at different values of the independent variable.
At which of the following points the maximum values of 2 nd derivative of function f(x) = -(2/x)
in the interval: [1,4] exits at x = 4.
Generally, Adams methods are superior if output at many points is needed.
In multistep method, if we choose small step size which increase the accuracy level.
If

Runge-Kutta method: Then K1 = hf(t0, y0)


𝒉 𝒌𝟏
Runge-Kutta method: Then K2 = hf(tn+ , yn + )
𝟐 𝟐
𝒉 𝒌𝟐
Runge-Kutta method: Then K3 = hf(tn+ , yn + )
𝟐 𝟐

Runge-Kutta method: Then K4 = hf(tn+h,yn+K3)

In trapezoidal rule, we assume that f(x) is continuous on [a,b] and we divide [a,b] into n
subintervals of equal length using the n+1 points.
To evaluate a definite integral of tabular function f(x), piecewise linear approximation led to
Trapezoidal Method.
To evaluate a definite integral of tabular function f(x), piecewise quadratic approximation led to
Simpson's rule.
While employing trapezoidal and Simpson rules to evaluate the double integral numerically, by
using trapezoidal and Simpson rule with respect to single variable at time.
We can improve the accuracy of trapezoidal and Simpson’s rules using Richardson’s
extrapolation method or Romberg’s Integration method.
In Romber’s Method, accuracy of Simpson and Trapezoidal rules is improved by extrapolation.
Geometrically the definite integral of any continuous function f(x) in the interval [a,b] gives area
of Trapezoidal with dimensions of ‘a’ and ‘b’.
Adam Moulton is also known as Linear Multistep Method.
In Simpson’s Rule, we assume that f(x) is continuous on [a,b] and we divide [a,b] into an Even
number n of subintervals of equal length.
A desirable feature of a multistep method is that the Local Truncation Error (L.T.E.) can be
determined and a correction term can be included which improves the accuracy of the answer at
each step. (True)
In Simpson’s Rule, we use parabolas to approximate each part of the curve. This proves to be
very efficient as compared to trapezoidal rule. (True)
The Second Lagrange polynomial with equally spaced nodes produced the formula for Newton’s
Method.
Euler’s Method numerically computes the approximate derivative of a function.
The need of numerical arises for evaluating the definite integral of a function that has no explicit
Derivative or whose antiderivative is not easy to obtain.

Euler’s Method Questions

Euler’s Method: y1 = y0 + hf(t0, y0)


In solving the differential equation y’ = x+y;y(0) = 1, h = 0.2 By Euler’s method y(0,2) is
calculated as 1.01

Q: Given that = with the initial condition y = 1, t = 0 using Euler’s method, y at h = 0.01;
the value of y(0.01)is: answer: 1.01
Solution: Formula Used: y1 = y0 + hf(t0,y0),
y(0.01) = 1 + 0.01(1) = 1.01

Q: Given that = with the initial condition y = 1.01, t = 0 using Euler’s method, y at t =
0.04, h = 0.05, the value of y(0.05) is: answer: 1.059
Solution: Formula Used: y1 = y0 + hf(t0,y0),
y(0.05) = 1.01 + (0.05)(1/1.02)
= 1.01+0.049
= 1.059
Q: Given that =t+ y with the initial condition y0 = 1 at t8 = 0 using Modified Euler’s
Method, for the range 0 ≤ t ≤ 0.6, h = 0.1 is
Y1=y0+hf(t0,y0)
( , ) ( , )
Y1= y0+h

Answer: 2.1

Taylor Series Questions

Q: Given that = t + y with the initial condition y0 = 1 at t0 = 0 find the 3rd term in Taylor
series when t=1.5, y=1.2, and h=0.1 Answer: 1.2

Q: Given that = t + y with the initial condition y0 = 1 at t0 = 0 find the 3rd term in Taylor
series when t=1.5, y=0.6, Answer: 1.35

Q: Given that = t + y with the initial condition y0 = 1 at t0 = 1 find the 2nd term in Taylor
series when t=1.5, y=1.2 Answer: 0.6

-
Q: Given that = with the initial condition y = 1 at t = 0 find the 2nd term in Taylor series
when t = 0.2, y = 0.3 Answer: 0.06

-
Q: Given that = with the initial condition y = 1 at t = 0 find the 3rd term in Taylor series
when t=0.3 and y = 0.2. Answer: 0.018
Q: Given that =1- y with the initial condition y0 = 1 at t0 = 0 find the 3 rd term of Taylor
Series When t = 0.5 and y = 0.25 Answer: 0.01325

Given that = t + y with the initial condition y0 = 1 at t0 = 0 find the 2 nd term in Taylor series
when t=1, yf=1.2, and h=0.1 answer: 1.2

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy