SlideShare a Scribd company logo
1 of 13
(a) Apply the program to the system of equations
x1 + 9x2 − 2x3 = 36
2x1 − x2 + 8x3 = 121
6x1 + x2 + x3 = 107
with an initial
x1 = 1, x2 = 1, x3 = 1
(b) Apply the program to
A(t)x = b
starting from x = [0,0,0]T, where
A(t) =
⎛
⎝
1 t t
t 1 t
t t 1
⎞
⎠ , b =
⎛
⎝
2
2
2
⎞
⎠
For t = 0.2, 0.5, 0.8, 0.9 determine the number of steps to obtain
the solution to
6 significant digits in the computations. Plot the number of
steps as functions
of t and make your comments.
4. A cable hung at its two ends as shown in Fig. 1 by its own
weight will have a catenary
shape described by the equation
y =
Tx
w
[
cosh
wx
Tx
− 1
]
(1)
where w is the weight per unit length and Tx is the horizontal,
x-component of the
tension of the cable. Equation (1) is for the case when both w
and Tx are constant
Figure 1: A diagram for a cable.
throughout the cable. In fact, Equation (1) is the solution of the
differential equation
d2y
dx2
=
w
Tx
ds
dx
=
w
Tx
[
1 +
(
dy
dx
)2
]1/2
(2)
where s is a variable along the length of the cable.
3
(a) Applying the Runge-Kutta method to solve the equation (2),
where w = 0.12
kN/m, xA = yA = 0, xB = 200 m, and yB = 50 m. Let the initial
conditions be
y = 0 at x = xA = 0, iterate Tx value until yB is within 99.9% of
50 m.
(b) How could the problem be solved if xA = 100 m and yA =
25 m by application
of the Runge-Kutta method (w remains equal to 0.12 kN/m)?
(c) Making a discussion about numerical results with different
mesh steps and with
other methods if possible.
5. The equation
y′ = 1 + y2, y(0) = 0
has the analytical solution y(t) = tan t. The tangent function is
infinite at t = π/2.
(a) Write your program to solve this initial value problem
between x = 0 and x = 1.6,
and compare the results of the program with the analytical
solution
(b) What is the behaviour of the Runge-Kutta fourth order
method when used be-
tween x = 0 and x = 1.6
(c) Compare the results from your program with R-K methods
and make comments
on the behaviour change with step size.
6. Here is a typical steady-state heat flow problem. Consider a
thin steel plate to be a
10× 20 (cm)2 rectangle. If one side of the 10 cm edge is held at
1000C and the other
three edges are held at 00C, what are the steady-state
temperature at interior points?
We can state the problem mathematically in this way if we
assume that heat flows
only in the x and y directions:
Find u(x, y) (temperature) such that
∂2u
∂x2
+
∂2u
∂y2
= 0 (3)
with boundary conditions
u(x, 0) = 0
u(x, 10) = 0
u(0, y) = 0
u(20, y) = 100
We replace the differential equation by a difference equation
1
h2
[ui+1,j + ui−1,j + ui,j+1 + ui,j−1 − 4ui,j ] = 0 (4)
which relates the temperature at the point (xi, yj) to the
temperature at four neigh-
bouring points, each the distance h away from (xi, yj). An
approximation of Equation
(3) results when we select a set of such points (these are often
called as nodes) and
find the solution to the set of difference equations that result.
(a) If we choose h = 5 cm , find the temperature at interior
points.
(b) Write a program to calculate the temperature distribution on
interior points with
h = 2.5, h = 0.25, h = 0.025 and h = 0.0025 cm. Discuss your
solutions and
examine the effect of grid size h.
4
(c) Modified the difference equation (4) so that it permits to
solve the equation
∂2u
∂x2
+
∂2u
∂y2
= xy(x− 2)(y − 2)
on the region
0 ≤ x ≤ 2, 0 ≤ y ≤ 2
with boundary condition u = 0 on all boundaries except for y =
0, where u = 1.0.
Write and run the program with different grid sizes h and
discuss your numerical
results.
7. If a anti level beam of length L, which bends due to a
uniform load of w lb/ft, is also
subject to an axial force P at its free end (see Figure 2). The
equation of its elastic
curve is
EI
d2y
dx2
= Py −
wx2
2
(5)
For this equation, the origin O has been taken at the free end. I
is the moment of
inertia; here I =
bh3
12
. At the point x = L,
dy
dx
= 0 and at x = 0, y = 0.
P
O X
Y
L
Figure 2: Diagram for a cantilever beam.
(a) Solve the boundary value problem by any numerical method
for a wooden beam,
2 in × 4 in × 10 ft, where E = 12× 105 lb/in2. Find y versus x
when the beam
has the 4 in dimension vertical with w = 25 lb/ft and a tension
force of P = 500
lb.
(b) And also solve for the deflections if the beam is turned so
that the 4 in dimension
is horizontal.
(c) If the factor of the radius of curvature has been taken into
account, Equation (5)
becomes
EI
[1 + (y′)2]3/2
d2y
dx2
= Py −
wx2
2
(6)
If the defection of the beam is small, the difference is
negligible, but in some cases
this is not true. Furthermore, if there is considerable bending of
the beam, the
horizontal distance from the origin to the wall is less than L, the
original length
of the beam. Solve the equation (6) with the same conditions,
and determine by
how much the deflections differ from those previous
calculations.
5
8. Consider a laterally insulated metal bar of length L = 1,
which satisfies the heat
equation
∂u
∂t
=
∂2u
∂x2
Suppose that the ends of the bar are kept at temperature u = 0oC
and the temperature
in the bar at t = 0, u(0, x) = sinπx.
(a) Using an explicit method with different meshes h to solve
the equation and find
numerical solutions at t = 5
(b) Using an implicit method with different meshes h to solve
the equation and find
numerical solutions at t = 5
(c) Using Crank-Nicolson method with different meshes h to
solve the equation and
find numerical solutions at t = 5
(d) Making your discussion for these three methods
The exact solution for this problem is
u(t, x) = sin(πx)e−π
2t
which can be used to compare with your numerical solutions.
9. Condon and Odishaw (1967) discuss Duffing equation for the
flux φ in a transformer.
This nonlinear differential equation is
d2φ
dt2
+ ω20φ+ bφ
3 =
ω
N
E cos(ωt), φ(0) = φ′(0) = 0
In this equation , E cosωt is the sinusoidal source voltage and N
is the number of
turns in the primary winding, where ω0 and b are parameters of
the transformer design.
Make a plot of φ versus t (and compare to the source voltage) if
E = 165, ω = 120π,
N = 600, ω20 = 83 and b = 0.14. For approximate calculations,
the nonlinear term
bφ3 is sometimes neglected. Evaluate your result to determine
whether this makes a
significant error in the results.
(Condon E. and Odishaw H., (1967) Handbook of Physics, New
York, McGraw-Hill)
10. A Foucault pendulum is one free to swing in both the x- and
y- directions. It is
frequently displayed in science museums to exhibit the rotation
of the earth, which
causes the pendulum to swing in directions that continuously
vary. The equations of
motion are
d2x
dt2
− 2ω sin(φ)
dy
dt
+ k2x = 0
d2y
dt2
+ 2ω sin(φ)
dx
dt
+ k2y = 0
where damping is absent (or compensated for). Here ω is the
angular velocity of the
earth’s rotation (7.29 × 10−5 sec−1), φ is the latitude, k2 = g/l,
where l is the length
of the pendulum.
(a) How long will it take a 10 meter long pendulum to rotate its
plane of swing by
45o at the latitude where you were born?
(b) How long if located in Leicester, UK?
6
122coursework(3)

More Related Content

Similar to (a) Apply the program to the system of equ.docx

Btech admission in india
Btech admission in indiaBtech admission in india
Btech admission in indiaEdhole.com
 
Q1Perform the two basic operations of multiplication and divisio.docx
Q1Perform the two basic operations of multiplication and divisio.docxQ1Perform the two basic operations of multiplication and divisio.docx
Q1Perform the two basic operations of multiplication and divisio.docxamrit47
 
Numerical Analysis Assignment Help
Numerical Analysis Assignment HelpNumerical Analysis Assignment Help
Numerical Analysis Assignment HelpMath Homework Solver
 
Numerical Analysis Assignment Help
Numerical Analysis Assignment HelpNumerical Analysis Assignment Help
Numerical Analysis Assignment HelpMath Homework Solver
 
CH EN 3453 Heat Transfer 2014 Fall Utah Homework HW 04 Solutions
CH EN 3453 Heat Transfer 2014 Fall Utah Homework HW 04 SolutionsCH EN 3453 Heat Transfer 2014 Fall Utah Homework HW 04 Solutions
CH EN 3453 Heat Transfer 2014 Fall Utah Homework HW 04 Solutionssemihypocrite
 
Single Variable Calculus Assignment Help
Single Variable Calculus Assignment HelpSingle Variable Calculus Assignment Help
Single Variable Calculus Assignment HelpMath Homework Solver
 
8.further calculus Further Mathematics Zimbabwe Zimsec Cambridge
8.further calculus   Further Mathematics Zimbabwe Zimsec Cambridge8.further calculus   Further Mathematics Zimbabwe Zimsec Cambridge
8.further calculus Further Mathematics Zimbabwe Zimsec Cambridgealproelearning
 
a decomposition methodMin quasdratic.pdf
a decomposition methodMin quasdratic.pdfa decomposition methodMin quasdratic.pdf
a decomposition methodMin quasdratic.pdfAnaRojas146538
 
Modeling and-simulating-of-gas-turbine-cooled-blades
Modeling and-simulating-of-gas-turbine-cooled-bladesModeling and-simulating-of-gas-turbine-cooled-blades
Modeling and-simulating-of-gas-turbine-cooled-bladesCemal Ardil
 
Latif M. Jiji (auth.) - Solutions Manual for Heat Conduction (Chap1-2-3) (200...
Latif M. Jiji (auth.) - Solutions Manual for Heat Conduction (Chap1-2-3) (200...Latif M. Jiji (auth.) - Solutions Manual for Heat Conduction (Chap1-2-3) (200...
Latif M. Jiji (auth.) - Solutions Manual for Heat Conduction (Chap1-2-3) (200...ezedin4
 
Differential Equations Homework Help
Differential Equations Homework HelpDifferential Equations Homework Help
Differential Equations Homework HelpMath Homework Solver
 
Mit2 092 f09_lec06
Mit2 092 f09_lec06Mit2 092 f09_lec06
Mit2 092 f09_lec06Rahman Hakim
 

Similar to (a) Apply the program to the system of equ.docx (20)

Btech admission in india
Btech admission in indiaBtech admission in india
Btech admission in india
 
Q1Perform the two basic operations of multiplication and divisio.docx
Q1Perform the two basic operations of multiplication and divisio.docxQ1Perform the two basic operations of multiplication and divisio.docx
Q1Perform the two basic operations of multiplication and divisio.docx
 
numerical.ppt
numerical.pptnumerical.ppt
numerical.ppt
 
Design & Analysis of Algorithms Assignment Help
Design & Analysis of Algorithms Assignment HelpDesign & Analysis of Algorithms Assignment Help
Design & Analysis of Algorithms Assignment Help
 
Numerical Analysis Assignment Help
Numerical Analysis Assignment HelpNumerical Analysis Assignment Help
Numerical Analysis Assignment Help
 
Rand final
Rand finalRand final
Rand final
 
Numerical Analysis Assignment Help
Numerical Analysis Assignment HelpNumerical Analysis Assignment Help
Numerical Analysis Assignment Help
 
Numerical Analysis Assignment Help
Numerical Analysis Assignment HelpNumerical Analysis Assignment Help
Numerical Analysis Assignment Help
 
Online Signals and Systems Assignment Help
Online Signals and Systems Assignment HelpOnline Signals and Systems Assignment Help
Online Signals and Systems Assignment Help
 
CH EN 3453 Heat Transfer 2014 Fall Utah Homework HW 04 Solutions
CH EN 3453 Heat Transfer 2014 Fall Utah Homework HW 04 SolutionsCH EN 3453 Heat Transfer 2014 Fall Utah Homework HW 04 Solutions
CH EN 3453 Heat Transfer 2014 Fall Utah Homework HW 04 Solutions
 
Single Variable Calculus Assignment Help
Single Variable Calculus Assignment HelpSingle Variable Calculus Assignment Help
Single Variable Calculus Assignment Help
 
19 4
19 419 4
19 4
 
8.further calculus Further Mathematics Zimbabwe Zimsec Cambridge
8.further calculus   Further Mathematics Zimbabwe Zimsec Cambridge8.further calculus   Further Mathematics Zimbabwe Zimsec Cambridge
8.further calculus Further Mathematics Zimbabwe Zimsec Cambridge
 
Finite element analysis qb
Finite element analysis qbFinite element analysis qb
Finite element analysis qb
 
a decomposition methodMin quasdratic.pdf
a decomposition methodMin quasdratic.pdfa decomposition methodMin quasdratic.pdf
a decomposition methodMin quasdratic.pdf
 
Jh3616111616
Jh3616111616Jh3616111616
Jh3616111616
 
Modeling and-simulating-of-gas-turbine-cooled-blades
Modeling and-simulating-of-gas-turbine-cooled-bladesModeling and-simulating-of-gas-turbine-cooled-blades
Modeling and-simulating-of-gas-turbine-cooled-blades
 
Latif M. Jiji (auth.) - Solutions Manual for Heat Conduction (Chap1-2-3) (200...
Latif M. Jiji (auth.) - Solutions Manual for Heat Conduction (Chap1-2-3) (200...Latif M. Jiji (auth.) - Solutions Manual for Heat Conduction (Chap1-2-3) (200...
Latif M. Jiji (auth.) - Solutions Manual for Heat Conduction (Chap1-2-3) (200...
 
Differential Equations Homework Help
Differential Equations Homework HelpDifferential Equations Homework Help
Differential Equations Homework Help
 
Mit2 092 f09_lec06
Mit2 092 f09_lec06Mit2 092 f09_lec06
Mit2 092 f09_lec06
 

More from katherncarlyle

After reading chapter 4, evaluate the history of the Data Encryp.docx
After reading chapter 4, evaluate the history of the Data Encryp.docxAfter reading chapter 4, evaluate the history of the Data Encryp.docx
After reading chapter 4, evaluate the history of the Data Encryp.docxkatherncarlyle
 
After reading Chapter 2 and the Required Resources please discuss th.docx
After reading Chapter 2 and the Required Resources please discuss th.docxAfter reading Chapter 2 and the Required Resources please discuss th.docx
After reading Chapter 2 and the Required Resources please discuss th.docxkatherncarlyle
 
After reading chapters 16 and 17 post a short reflection, approximat.docx
After reading chapters 16 and 17 post a short reflection, approximat.docxAfter reading chapters 16 and 17 post a short reflection, approximat.docx
After reading chapters 16 and 17 post a short reflection, approximat.docxkatherncarlyle
 
After reading chapter 3, analyze the history of Caesar Cypher an.docx
After reading chapter 3, analyze the history of Caesar Cypher an.docxAfter reading chapter 3, analyze the history of Caesar Cypher an.docx
After reading chapter 3, analyze the history of Caesar Cypher an.docxkatherncarlyle
 
After having learned about Cognitive Psychology and Humaistic Psycho.docx
After having learned about Cognitive Psychology and Humaistic Psycho.docxAfter having learned about Cognitive Psychology and Humaistic Psycho.docx
After having learned about Cognitive Psychology and Humaistic Psycho.docxkatherncarlyle
 
Advisory from Professionals Preparing Information .docx
Advisory from Professionals Preparing Information .docxAdvisory from Professionals Preparing Information .docx
Advisory from Professionals Preparing Information .docxkatherncarlyle
 
After completing the assigned readings and watching the provided.docx
After completing the assigned readings and watching the provided.docxAfter completing the assigned readings and watching the provided.docx
After completing the assigned readings and watching the provided.docxkatherncarlyle
 
Advocacy is a vital component of the early childhood professiona.docx
Advocacy is a vital component of the early childhood professiona.docxAdvocacy is a vital component of the early childhood professiona.docx
Advocacy is a vital component of the early childhood professiona.docxkatherncarlyle
 
After completing this weeks assignment...   Share with your classma.docx
After completing this weeks assignment...   Share with your classma.docxAfter completing this weeks assignment...   Share with your classma.docx
After completing this weeks assignment...   Share with your classma.docxkatherncarlyle
 
African Americans men are at a greater risk for developing prostate .docx
African Americans men are at a greater risk for developing prostate .docxAfrican Americans men are at a greater risk for developing prostate .docx
African Americans men are at a greater risk for developing prostate .docxkatherncarlyle
 
Advances over the last few decades have brought innovative and c.docx
Advances over the last few decades have brought innovative and c.docxAdvances over the last few decades have brought innovative and c.docx
Advances over the last few decades have brought innovative and c.docxkatherncarlyle
 
Advocacy is a vital component of the early childhood professional’s .docx
Advocacy is a vital component of the early childhood professional’s .docxAdvocacy is a vital component of the early childhood professional’s .docx
Advocacy is a vital component of the early childhood professional’s .docxkatherncarlyle
 
Advocacy Through LegislationIdentify a problem or .docx
Advocacy Through LegislationIdentify a problem or .docxAdvocacy Through LegislationIdentify a problem or .docx
Advocacy Through LegislationIdentify a problem or .docxkatherncarlyle
 
Advanced pathoRespond to Stacy and Sonia 1 day agoStacy A.docx
Advanced pathoRespond to  Stacy and Sonia 1 day agoStacy A.docxAdvanced pathoRespond to  Stacy and Sonia 1 day agoStacy A.docx
Advanced pathoRespond to Stacy and Sonia 1 day agoStacy A.docxkatherncarlyle
 
After completing the reading this week, we reflect on a few ke.docx
After completing the reading this week, we reflect on a few ke.docxAfter completing the reading this week, we reflect on a few ke.docx
After completing the reading this week, we reflect on a few ke.docxkatherncarlyle
 
Adopting Enterprise Risk Management inToday’s Wo.docx
Adopting Enterprise Risk Management inToday’s Wo.docxAdopting Enterprise Risk Management inToday’s Wo.docx
Adopting Enterprise Risk Management inToday’s Wo.docxkatherncarlyle
 
Addisons diseaseYou may use the textbook as one reference a.docx
Addisons diseaseYou may use the textbook as one reference a.docxAddisons diseaseYou may use the textbook as one reference a.docx
Addisons diseaseYou may use the textbook as one reference a.docxkatherncarlyle
 
AdultGeriatric DepressionIntroduction According to Mace.docx
AdultGeriatric DepressionIntroduction According to Mace.docxAdultGeriatric DepressionIntroduction According to Mace.docx
AdultGeriatric DepressionIntroduction According to Mace.docxkatherncarlyle
 
Adopt-a-Plant Project guidelinesOverviewThe purpose of this.docx
Adopt-a-Plant Project guidelinesOverviewThe purpose of this.docxAdopt-a-Plant Project guidelinesOverviewThe purpose of this.docx
Adopt-a-Plant Project guidelinesOverviewThe purpose of this.docxkatherncarlyle
 
Adolescent development is broad and wide-ranging, including phys.docx
Adolescent development is broad and wide-ranging, including phys.docxAdolescent development is broad and wide-ranging, including phys.docx
Adolescent development is broad and wide-ranging, including phys.docxkatherncarlyle
 

More from katherncarlyle (20)

After reading chapter 4, evaluate the history of the Data Encryp.docx
After reading chapter 4, evaluate the history of the Data Encryp.docxAfter reading chapter 4, evaluate the history of the Data Encryp.docx
After reading chapter 4, evaluate the history of the Data Encryp.docx
 
After reading Chapter 2 and the Required Resources please discuss th.docx
After reading Chapter 2 and the Required Resources please discuss th.docxAfter reading Chapter 2 and the Required Resources please discuss th.docx
After reading Chapter 2 and the Required Resources please discuss th.docx
 
After reading chapters 16 and 17 post a short reflection, approximat.docx
After reading chapters 16 and 17 post a short reflection, approximat.docxAfter reading chapters 16 and 17 post a short reflection, approximat.docx
After reading chapters 16 and 17 post a short reflection, approximat.docx
 
After reading chapter 3, analyze the history of Caesar Cypher an.docx
After reading chapter 3, analyze the history of Caesar Cypher an.docxAfter reading chapter 3, analyze the history of Caesar Cypher an.docx
After reading chapter 3, analyze the history of Caesar Cypher an.docx
 
After having learned about Cognitive Psychology and Humaistic Psycho.docx
After having learned about Cognitive Psychology and Humaistic Psycho.docxAfter having learned about Cognitive Psychology and Humaistic Psycho.docx
After having learned about Cognitive Psychology and Humaistic Psycho.docx
 
Advisory from Professionals Preparing Information .docx
Advisory from Professionals Preparing Information .docxAdvisory from Professionals Preparing Information .docx
Advisory from Professionals Preparing Information .docx
 
After completing the assigned readings and watching the provided.docx
After completing the assigned readings and watching the provided.docxAfter completing the assigned readings and watching the provided.docx
After completing the assigned readings and watching the provided.docx
 
Advocacy is a vital component of the early childhood professiona.docx
Advocacy is a vital component of the early childhood professiona.docxAdvocacy is a vital component of the early childhood professiona.docx
Advocacy is a vital component of the early childhood professiona.docx
 
After completing this weeks assignment...   Share with your classma.docx
After completing this weeks assignment...   Share with your classma.docxAfter completing this weeks assignment...   Share with your classma.docx
After completing this weeks assignment...   Share with your classma.docx
 
African Americans men are at a greater risk for developing prostate .docx
African Americans men are at a greater risk for developing prostate .docxAfrican Americans men are at a greater risk for developing prostate .docx
African Americans men are at a greater risk for developing prostate .docx
 
Advances over the last few decades have brought innovative and c.docx
Advances over the last few decades have brought innovative and c.docxAdvances over the last few decades have brought innovative and c.docx
Advances over the last few decades have brought innovative and c.docx
 
Advocacy is a vital component of the early childhood professional’s .docx
Advocacy is a vital component of the early childhood professional’s .docxAdvocacy is a vital component of the early childhood professional’s .docx
Advocacy is a vital component of the early childhood professional’s .docx
 
Advocacy Through LegislationIdentify a problem or .docx
Advocacy Through LegislationIdentify a problem or .docxAdvocacy Through LegislationIdentify a problem or .docx
Advocacy Through LegislationIdentify a problem or .docx
 
Advanced pathoRespond to Stacy and Sonia 1 day agoStacy A.docx
Advanced pathoRespond to  Stacy and Sonia 1 day agoStacy A.docxAdvanced pathoRespond to  Stacy and Sonia 1 day agoStacy A.docx
Advanced pathoRespond to Stacy and Sonia 1 day agoStacy A.docx
 
After completing the reading this week, we reflect on a few ke.docx
After completing the reading this week, we reflect on a few ke.docxAfter completing the reading this week, we reflect on a few ke.docx
After completing the reading this week, we reflect on a few ke.docx
 
Adopting Enterprise Risk Management inToday’s Wo.docx
Adopting Enterprise Risk Management inToday’s Wo.docxAdopting Enterprise Risk Management inToday’s Wo.docx
Adopting Enterprise Risk Management inToday’s Wo.docx
 
Addisons diseaseYou may use the textbook as one reference a.docx
Addisons diseaseYou may use the textbook as one reference a.docxAddisons diseaseYou may use the textbook as one reference a.docx
Addisons diseaseYou may use the textbook as one reference a.docx
 
AdultGeriatric DepressionIntroduction According to Mace.docx
AdultGeriatric DepressionIntroduction According to Mace.docxAdultGeriatric DepressionIntroduction According to Mace.docx
AdultGeriatric DepressionIntroduction According to Mace.docx
 
Adopt-a-Plant Project guidelinesOverviewThe purpose of this.docx
Adopt-a-Plant Project guidelinesOverviewThe purpose of this.docxAdopt-a-Plant Project guidelinesOverviewThe purpose of this.docx
Adopt-a-Plant Project guidelinesOverviewThe purpose of this.docx
 
Adolescent development is broad and wide-ranging, including phys.docx
Adolescent development is broad and wide-ranging, including phys.docxAdolescent development is broad and wide-ranging, including phys.docx
Adolescent development is broad and wide-ranging, including phys.docx
 

Recently uploaded

Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfUjwalaBharambe
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentInMediaRes1
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Jisc
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 

Recently uploaded (20)

Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media Component
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 

(a) Apply the program to the system of equ.docx

  • 1. (a) Apply the program to the system of equations x1 + 9x2 − 2x3 = 36 2x1 − x2 + 8x3 = 121 6x1 + x2 + x3 = 107 with an initial x1 = 1, x2 = 1, x3 = 1 (b) Apply the program to A(t)x = b starting from x = [0,0,0]T, where A(t) = ⎛ ⎝
  • 2. 1 t t t 1 t t t 1 ⎞ ⎠ , b = ⎛ ⎝ 2 2 2 ⎞ ⎠ For t = 0.2, 0.5, 0.8, 0.9 determine the number of steps to obtain the solution to 6 significant digits in the computations. Plot the number of steps as functions of t and make your comments. 4. A cable hung at its two ends as shown in Fig. 1 by its own weight will have a catenary shape described by the equation y = Tx w [
  • 3. cosh wx Tx − 1 ] (1) where w is the weight per unit length and Tx is the horizontal, x-component of the tension of the cable. Equation (1) is for the case when both w and Tx are constant Figure 1: A diagram for a cable. throughout the cable. In fact, Equation (1) is the solution of the differential equation d2y dx2 = w Tx ds dx = w
  • 4. Tx [ 1 + ( dy dx )2 ]1/2 (2) where s is a variable along the length of the cable. 3 (a) Applying the Runge-Kutta method to solve the equation (2), where w = 0.12 kN/m, xA = yA = 0, xB = 200 m, and yB = 50 m. Let the initial conditions be y = 0 at x = xA = 0, iterate Tx value until yB is within 99.9% of 50 m. (b) How could the problem be solved if xA = 100 m and yA = 25 m by application of the Runge-Kutta method (w remains equal to 0.12 kN/m)? (c) Making a discussion about numerical results with different mesh steps and with
  • 5. other methods if possible. 5. The equation y′ = 1 + y2, y(0) = 0 has the analytical solution y(t) = tan t. The tangent function is infinite at t = π/2. (a) Write your program to solve this initial value problem between x = 0 and x = 1.6, and compare the results of the program with the analytical solution (b) What is the behaviour of the Runge-Kutta fourth order method when used be- tween x = 0 and x = 1.6 (c) Compare the results from your program with R-K methods and make comments on the behaviour change with step size. 6. Here is a typical steady-state heat flow problem. Consider a thin steel plate to be a 10× 20 (cm)2 rectangle. If one side of the 10 cm edge is held at 1000C and the other three edges are held at 00C, what are the steady-state temperature at interior points? We can state the problem mathematically in this way if we assume that heat flows only in the x and y directions: Find u(x, y) (temperature) such that ∂2u ∂x2 +
  • 6. ∂2u ∂y2 = 0 (3) with boundary conditions u(x, 0) = 0 u(x, 10) = 0 u(0, y) = 0 u(20, y) = 100 We replace the differential equation by a difference equation 1 h2 [ui+1,j + ui−1,j + ui,j+1 + ui,j−1 − 4ui,j ] = 0 (4) which relates the temperature at the point (xi, yj) to the temperature at four neigh- bouring points, each the distance h away from (xi, yj). An approximation of Equation (3) results when we select a set of such points (these are often called as nodes) and find the solution to the set of difference equations that result. (a) If we choose h = 5 cm , find the temperature at interior points. (b) Write a program to calculate the temperature distribution on interior points with
  • 7. h = 2.5, h = 0.25, h = 0.025 and h = 0.0025 cm. Discuss your solutions and examine the effect of grid size h. 4 (c) Modified the difference equation (4) so that it permits to solve the equation ∂2u ∂x2 + ∂2u ∂y2 = xy(x− 2)(y − 2) on the region 0 ≤ x ≤ 2, 0 ≤ y ≤ 2 with boundary condition u = 0 on all boundaries except for y = 0, where u = 1.0. Write and run the program with different grid sizes h and discuss your numerical results. 7. If a anti level beam of length L, which bends due to a uniform load of w lb/ft, is also subject to an axial force P at its free end (see Figure 2). The equation of its elastic curve is
  • 8. EI d2y dx2 = Py − wx2 2 (5) For this equation, the origin O has been taken at the free end. I is the moment of inertia; here I = bh3 12 . At the point x = L, dy dx = 0 and at x = 0, y = 0. P O X Y L Figure 2: Diagram for a cantilever beam. (a) Solve the boundary value problem by any numerical method
  • 9. for a wooden beam, 2 in × 4 in × 10 ft, where E = 12× 105 lb/in2. Find y versus x when the beam has the 4 in dimension vertical with w = 25 lb/ft and a tension force of P = 500 lb. (b) And also solve for the deflections if the beam is turned so that the 4 in dimension is horizontal. (c) If the factor of the radius of curvature has been taken into account, Equation (5) becomes EI [1 + (y′)2]3/2 d2y dx2 = Py − wx2 2 (6) If the defection of the beam is small, the difference is negligible, but in some cases this is not true. Furthermore, if there is considerable bending of the beam, the horizontal distance from the origin to the wall is less than L, the original length of the beam. Solve the equation (6) with the same conditions, and determine by
  • 10. how much the deflections differ from those previous calculations. 5 8. Consider a laterally insulated metal bar of length L = 1, which satisfies the heat equation ∂u ∂t = ∂2u ∂x2 Suppose that the ends of the bar are kept at temperature u = 0oC and the temperature in the bar at t = 0, u(0, x) = sinπx. (a) Using an explicit method with different meshes h to solve the equation and find numerical solutions at t = 5 (b) Using an implicit method with different meshes h to solve the equation and find numerical solutions at t = 5 (c) Using Crank-Nicolson method with different meshes h to solve the equation and find numerical solutions at t = 5
  • 11. (d) Making your discussion for these three methods The exact solution for this problem is u(t, x) = sin(πx)e−π 2t which can be used to compare with your numerical solutions. 9. Condon and Odishaw (1967) discuss Duffing equation for the flux φ in a transformer. This nonlinear differential equation is d2φ dt2 + ω20φ+ bφ 3 = ω N E cos(ωt), φ(0) = φ′(0) = 0 In this equation , E cosωt is the sinusoidal source voltage and N is the number of turns in the primary winding, where ω0 and b are parameters of the transformer design. Make a plot of φ versus t (and compare to the source voltage) if E = 165, ω = 120π, N = 600, ω20 = 83 and b = 0.14. For approximate calculations, the nonlinear term bφ3 is sometimes neglected. Evaluate your result to determine whether this makes a significant error in the results. (Condon E. and Odishaw H., (1967) Handbook of Physics, New
  • 12. York, McGraw-Hill) 10. A Foucault pendulum is one free to swing in both the x- and y- directions. It is frequently displayed in science museums to exhibit the rotation of the earth, which causes the pendulum to swing in directions that continuously vary. The equations of motion are d2x dt2 − 2ω sin(φ) dy dt + k2x = 0 d2y dt2 + 2ω sin(φ) dx dt + k2y = 0 where damping is absent (or compensated for). Here ω is the angular velocity of the earth’s rotation (7.29 × 10−5 sec−1), φ is the latitude, k2 = g/l, where l is the length of the pendulum.
  • 13. (a) How long will it take a 10 meter long pendulum to rotate its plane of swing by 45o at the latitude where you were born? (b) How long if located in Leicester, UK? 6 122coursework(3)