EBK NUMERICAL METHODS FOR ENGINEERS
7th Edition
ISBN: 8220100254147
Author: Chapra
Publisher: MCG
expand_more
expand_more
format_list_bulleted
Concept explainers
Textbook Question
Chapter 30, Problem 9P
Modify the program in Prob. 30.8 so that it employs either Dirichlet or derivative boundary conditions. Test it by solving Prob. 30.2.
Expert Solution & Answer
Want to see the full answer?
Check out a sample textbook solutionStudents have asked these similar questions
Suppose a point
satisfies sufficiency conditions
for a local minimum. How do you
establish that
it is a global minimum
3. Using the trial function uh(x) = a sin(x) and weighting function wh(x) = b sin(x) find
an approximate solution to the following boundary value problems by determining the value
of coefficient a. For each one, also find the exact solution using Matlab and plot the exact
and approximate solutions. (One point each for: (i) finding a, (ii) finding the exact solution,
and (iii) plotting the solution)
a.
(U₁xx - 2 = 0
u(0) = 0
u(1) = 0
b. Modify the trial function and find an approximation for the following boundary value
problem. (Hint: you will need to add an extra term to the function to make it satisfy
the boundary conditions.)
(U₁xx - 2 = 0
u(0) = 1
u(1) = 0
Compute the mean of a Poisson distribution by hand. Show intermediate steps.
Chapter 30 Solutions
EBK NUMERICAL METHODS FOR ENGINEERS
Ch. 30 - 30.1 Repeat Example 30.1, but use the midpoint...Ch. 30 - Repeat Example 30.1, but for the case where the...Ch. 30 - 30.3 (a) Repeat Example 30.1, but for a time step...Ch. 30 - Repeat Example 30.2, but for the case where the...Ch. 30 - Repeat Example 30.3, but for x=1cm.Ch. 30 - 30.6 Repeat Example 30.5, but for the plate...Ch. 30 - 30.7 The advection-diffusion equation is used to...Ch. 30 - 30.8 Develop a user-friendly computer program for...Ch. 30 - 30.9 Modify the program in Prob. 30.8 so that it...Ch. 30 - Develop a user-friendly computer program to...
Additional Engineering Textbook Solutions
Find more solutions based on key concepts
Is there a relationship between wine consumption and deaths from heart disease? The table gives data from 19 de...
College Algebra Essentials (5th Edition)
1. How much money is Joe earning when he’s 30?
Pathways To Math Literacy (looseleaf)
23. A plant nursery sells two sizes of oak trees to landscapers. Large trees cost the nursery $120 from the gro...
College Algebra (Collegiate Math)
Students in a Listening Responses class bought 40 tickets for a piano concert. The number of tickets purchased ...
Elementary and Intermediate Algebra: Concepts and Applications (7th Edition)
Provide an example of a qualitative variable and an example of a quantitative variable.
Elementary Statistics ( 3rd International Edition ) Isbn:9781260092561
153. A rain gutter is made from sheets of aluminum that are 20 inches wide. As shown in the figure, the edges ...
College Algebra (7th Edition)
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, mechanical-engineering and related others by exploring similar questions and additional content below.Similar questions
- can you solve it with explanation,thx.arrow_forwardFind the three unknown on this problems using Elimination Method and Cramer's Rule. Attach your solutions and indicate your final answer. Problem 1. 7z 5y 3z 16 %3D 3z 5y + 2z -8 %3D 5z + 3y 7z = 0 Problem 2. 4x-2y+3z 1 *+3y-4z -7 3x+ y+2z 5arrow_forwardConsider the function p(x) = x² - 4x³+3x²+x-1. Use Newton-Raphson's method with initial guess of 3. What's the updated value of the root at the end of the second iteration? Type your answer...arrow_forward
- 33.2 solve using MATLAB. do not use syms.arrow_forwardlook at the graph wich presents F vs x graph ... Q : Determine the compression of the spring from the change in position of the cart+block in Graph ? please tell me the steps how can I find compression of the spring from the change in position of the cart+blockarrow_forwardThe natural exponential function can be expressed by . Determine e2by calculating the sum of the series for:(a) n = 5, (b) n = 15, (c) n = 25For each part create a vector n in which the first element is 0, the incrementis 1, and the last term is 5, 15, or 25. Then use element-by-element calculations to create a vector in which the elements are . Finally, use the MATLAB built-in function sum to add the terms of the series. Compare thevalues obtained in parts (a), (b), and (c) with the value of e2calculated byMATLAB.arrow_forward
- (2) Calculate by hand three iterations of the Golden-Section Search algorithm to approximate the maximum of f(x) = -0.1x² - ex. Use an initial bracket of XL = 0 and xu = 3. Show work, and for each iteration indicate the value of Xopt.arrow_forward1. The following transportation problem of cost matrix is: Destination Supply A 7. 10 6. 80 15 Demand 75 20 50 Sources Requirement: Is it what type of transportation problem? Discuss the other types of it. The penalty costs for not satisfying demand at the warehouses D, E, and F are TK. 5, 3, and 2 per unk respectively. Determine minimum transportation cost by using Lest Cost Method (LCM)arrow_forwardQ2): Dual problem below: Min Z = 120y, + 6y2 + 105y3 Subject to : Зу, + 5у2 + 8уз 23 10y, + 2y2 + 10y; > 4 5y1 + 8y2 + 3y3 2 1 У, Уг, Уз 2 0 1) Convert dual problem to primal problem. 2) Use the simplex method to find optimal solution in primal problemarrow_forward
- For the DE: dy/dx=2x-y y(0)=2 with h=0.2, solve for y using each method below in the range of 0 <= x <= 3: Q1) Using Matlab to employ the Euler Method (Sect 2.4) Q2) Using Matlab to employ the Improved Euler Method (Sect 2.5 close all clear all % Let's program exact soln for i=1:5 x_exact(i)=0.5*i-0.5; y_exact(i)=-x_exact(i)-1+exp(x_exact(i)); end plot(x_exact,y_exact,'b') % now for Euler's h=0.5 x_EM(1)=0; y_EM(1)=0; for i=2:5 x_EM(i)=x_EM(i-1)+h; y_EM(i)=y_EM(i-1)+(h*(x_EM(i-1)+y_EM(i-1))); end hold on plot (x_EM,y_EM,'r') % Improved Euler's Method h=0.5 x_IE(1)=0; y_IE(1)=0; for i=2:1:5 kA=x_IE(i-1)+y_IE(i-1); u=y_IE(i-1)+h*kA; x_IE(i)=x_IE(i-1)+h; kB=x_IE(i)+u; k=(kA+kB)/2; y_IE(i)=y_IE(i-1)+h*k; end hold on plot(x_IE,y_IE,'k')arrow_forwardQ6): Solve the following assignment problem for the total minimum time. Jobs M1 M2 M3 M4 M5 A 14 19 15 8 7 17 20 19 C 18 21 18 D 10 12 18 19 E 15 21 Suppose job C cannot be assigned to machine M3 how the allocation will 10 16 8 be?arrow_forward(3) Method. Print the code and the answer for an error tolerance &₁ = 0.01%. Problem 5.14: Hint: you can reuse code from above. Print the Matlab code, and clearly indicate your answer.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Elements Of ElectromagneticsMechanical EngineeringISBN:9780190698614Author:Sadiku, Matthew N. O.Publisher:Oxford University PressMechanics of Materials (10th Edition)Mechanical EngineeringISBN:9780134319650Author:Russell C. HibbelerPublisher:PEARSONThermodynamics: An Engineering ApproachMechanical EngineeringISBN:9781259822674Author:Yunus A. Cengel Dr., Michael A. BolesPublisher:McGraw-Hill Education
- Control Systems EngineeringMechanical EngineeringISBN:9781118170519Author:Norman S. NisePublisher:WILEYMechanics of Materials (MindTap Course List)Mechanical EngineeringISBN:9781337093347Author:Barry J. Goodno, James M. GerePublisher:Cengage LearningEngineering Mechanics: StaticsMechanical EngineeringISBN:9781118807330Author:James L. Meriam, L. G. Kraige, J. N. BoltonPublisher:WILEY
Elements Of Electromagnetics
Mechanical Engineering
ISBN:9780190698614
Author:Sadiku, Matthew N. O.
Publisher:Oxford University Press
Mechanics of Materials (10th Edition)
Mechanical Engineering
ISBN:9780134319650
Author:Russell C. Hibbeler
Publisher:PEARSON
Thermodynamics: An Engineering Approach
Mechanical Engineering
ISBN:9781259822674
Author:Yunus A. Cengel Dr., Michael A. Boles
Publisher:McGraw-Hill Education
Control Systems Engineering
Mechanical Engineering
ISBN:9781118170519
Author:Norman S. Nise
Publisher:WILEY
Mechanics of Materials (MindTap Course List)
Mechanical Engineering
ISBN:9781337093347
Author:Barry J. Goodno, James M. Gere
Publisher:Cengage Learning
Engineering Mechanics: Statics
Mechanical Engineering
ISBN:9781118807330
Author:James L. Meriam, L. G. Kraige, J. N. Bolton
Publisher:WILEY
Learn Algebra 6 : Rate of Change; Author: Derek Banas;https://www.youtube.com/watch?v=Dw701mKcJ1k;License: Standard YouTube License, CC-BY