Get Numerical Methods for Engineers 6th Edition Chapra Solutions Manual free all chapters
Get Numerical Methods for Engineers 6th Edition Chapra Solutions Manual free all chapters
com
https://testbankfan.com/product/numerical-methods-for-
engineers-6th-edition-chapra-solutions-manual/
OR CLICK HERE
DOWLOAD NOW
https://testbankfan.com/product/numerical-methods-for-engineers-7th-
edition-chapra-solutions-manual/
testbankfan.com
https://testbankfan.com/product/applied-numerical-methods-wmatlab-for-
engineers-and-scientists-3rd-edition-chapra-solutions-manual/
testbankfan.com
https://testbankfan.com/product/applied-numerical-methods-with-matlab-
for-engineers-and-scientists-2nd-edition-steven-chapra-solutions-
manual/
testbankfan.com
https://testbankfan.com/product/economics-today-the-micro-view-18th-
edition-miller-solutions-manual/
testbankfan.com
Research Methods for the Behavioral Sciences 2nd Edition
Privitera Test Bank
https://testbankfan.com/product/research-methods-for-the-behavioral-
sciences-2nd-edition-privitera-test-bank/
testbankfan.com
https://testbankfan.com/product/business-law-text-and-exercises-8th-
edition-miller-solutions-manual/
testbankfan.com
https://testbankfan.com/product/biopsychology-8th-edition-pinel-test-
bank/
testbankfan.com
https://testbankfan.com/product/android-how-to-program-3rd-edition-
deitel-test-bank/
testbankfan.com
https://testbankfan.com/product/database-systems-design-
implementation-and-management-11th-edition-coronel-solutions-manual/
testbankfan.com
Payroll Accounting 2019 5th Edition Landin Solutions
Manual
https://testbankfan.com/product/payroll-accounting-2019-5th-edition-
landin-solutions-manual/
testbankfan.com
1
CHAPTER 8
8.1 Ideal gas law:
RT 0.082054(400)
v= = = 13.12864
p 2.5
⎛ a ⎞
f (v) = ⎜ p + 2 ⎟(v − b) − RT
⎝ v ⎠
⎛ 14.09 ⎞
f (v) = ⎜ 2.5 + 2 ⎟(v − 0.0994) − 0.082054(400)
⎝ v ⎠
Any of the techniques in Chaps 5 or 6 can be used to determine the root as v = 12.7908 L/mol. The
Newton-Raphson method would be a good choice because (a) the equation is relatively simple to
differentiate and (b) the ideal gas law provides a good initial guess. The Newton-Raphson method can be
formulated as
⎛ a ⎞⎟
⎜p+ (vi − b) − RT
⎜ vi2 ⎟⎠
vi +1 = vi − ⎝
⎛ a ⎞⎟ 2a
⎜p+ − (vi − b) 3
⎜ vi2 ⎟⎠
⎝ vi
Using the ideal gas law for the initial guess results in an accurate root determination in a few iterations:
i xi f(xi) f'(xi) εa
0 13.12864 0.816601 2.419491
1 12.79113 0.000711 2.415221 2.6386%
2 12.79084 5.7E-10 2.415217 0.0023%
3 12.79084 0 2.415217 0.0000%
1 + R(1 − X Af ) R +1
f ( R ) = ln − =0
R (1 − X Af ) R[1 + R (1 − X Af )]
1 + 0.04 R R +1
f ( R) = ln − =0
R (0.04) R (1 + 0.04 R)
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
2
2
0
-2 0 0.2 0.4 0.6 0.8 1
-4
-6
Bisection with initial guesses of 0.01 and 1 can be used to determine a root of 0.28194 after 16
iterations with εa = 0.005%.
(4 + x)
f ( x) = − 0.016 = 0
(42 − 2 x) 2 ( 28 − x)
0.8
0.6
0.4
0.2
0
-0.2 0 5 10 15 20
(b) The shape of the function indicates that false position would be a poor choice (recall Fig. 5.14).
Bisection with initial guesses of 0 and 20 can be used to determine a root of 15.85938 after 8 iterations
with εa = 0.493%. Note that false position would have required 68 iterations to attain comparable
accuracy.
(c c ,0 + x1 + x 2 )
K1 =
(c a ,0 − 2 x1 − x 2 ) 2 (c b,0 − x1 )
(c c ,0 + x1 + x 2 )
K2 =
(c a ,0 − 2 x1 − x 2 )(c d ,0 − x 2 )
or
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
3
5 + x1 + x 2
f1 ( x1 , x 2 ) = − 4 × 10 −4
(50 − 2 x1 − x 2 ) 2 (20 − x1 )
(5 + x1 + x 2 )
f 2 ( x1 , x 2 ) = − 3.7 × 10 −2
(50 − 2 x1 − x 2 )(10 − x 2 )
Graphs can be generated by specifying values of x1 and solving for x2 using a numerical method like
bisection.
0
0 1 2 3 4 5
-4
Therefore, the root seems to be at about x1 = 3.3 and x2 = 2.7. Employing these values as the initial
guesses for the two-variable Newton-Raphson method gives
∂f1 ∂f 2
= 9.9 × 10 −5 = 5.185 × 10 −3
∂x1 ∂x1
∂f1 ∂f 2
= 5.57 × 10 −5 = 9.35 × 10 −3
∂x 2 ∂x 2
J = 6.37 × 10 −7
− 2.36 × 10 −6 (9.35 × 10 −3 ) − 2.33 × 10 −5 (5.57 × 10 −5 )
x1 = 3.3 − = 3.3367
6.37 × 10 −7
2.33 × 10 −5 (9.9 × 10 −5 ) − (−2.36 × 10 −6 )(5.185 × 10 −3 )
x 2 = 2.7 − = 2.677
6.37 × 10 −7
The second iteration yields x1 = 3.3366 and x2 = 2.677, with a maximum approximate error of 0.003%.
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
4
x 7
f ( x) = − 0.04 = 0
1− x 2+ x
0.1
0
0 0.02 0.04 0.06
-0.1
Because the function is so linear, false position is a good choice. Using initial guesses of 0.01 and 0.03,
the first iteration is
0.017432(0.01 − 0.03)
x r = 0.03 − = 0.020964
− 0.02115 − 0.017432
( )
f (t ) = 12 1 − e −0.04t + 5e −0.04t − 10.2 = 0
0
0 20 40 60 80 100
-2
-4
-6
Bisection with initial guesses of 0 and 60 can be used to determine a root of 53.711 after 16 iterations
with εa = 0.002%.
8.7 Using the given values, a = 12.5578 and b = 0.0018626. Therefore, the roots problem to be solved is
0.518(233) 12.5578
f (v ) = − − 65,000
(v − 0.0018626) v(v + 0.0018626) 233
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
5
800000
400000
0
-4000000.001 0.002 0.003 0.004
-800000
-1200000
Using initial guesses of 0.002 and 0.004, bisection can be employed to determine the root as 0.002807
after 12 iterations with εa = 0.017%. The mass of methane contained in the tank can be computed as
3/0.00275 = 1068.6 kg.
⎡ ⎛ 2−h⎞ 2⎤
f (h) = ⎢4 cos −1 ⎜ ⎟ − ( 2 − h) 4h − h ⎥ 5 − 8 = 0
⎣ ⎝ 2 ⎠ ⎦
60
40
20
0
-20 0 1 2 3 4
πh 2 (3 − h)
f ( h) = − 0.75 = 0
3
4
2
0
-2 0 0.5 1 1.5 2
8.10 The best way to approach this problem is to use the graphical method displayed in Fig. 6.3. For the
first version, we plot
h 3 + 0.7162
y1 = h and y2 =
3
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
6
versus the range of h. Note that for the sphere, h ranges from 0 to 2r. As displayed below, this version
will always converge.
2.5
y1
2
1.5
y2
1
0.5
0
0 0.5 1 1.5 2
y1 = h and y 2 = 3 3h 2 − 0.7162
3
y2
2
y1
1
0
0 0.5 1 1.5 2
-1
ε3 1− ε
10 = 150 + 1.75
1− ε 1000
ε3
f (ε ) = 0.15(1 − ε ) + 1.75 − 10 =0
1− ε
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
7
4
2
0
-2 0 0.1 0.2 0.3 0.4 0.5 0.6
-4
But suppose that we do not have a plot. How do we come up with a good initial guess? The void
fraction (the fraction of the volume that is not solid; i.e. consists of voids) varies between 0 and 1. As
can be seen, a value of 1 (which is physically unrealistic) causes a division by zero. Therefore, two
physically-based initial guesses can be chosen as 0 and 0.99. Note that the zero is not physically
realistic either, but since it does not cause any mathematical difficulties, it is OK. Applying bisection
yields a result of ε = 0.461857 in 15 iterations with an absolute approximate relative error of
6.54×10−3%.
ρVD 1.23(40)0.005
Re = = = 13743
μ 1.79 × 10 −5
⎛ 0.0000015 2.51 ⎞⎟ 1
g ( f ) = −2.0 log⎜ + − =0
⎜ 3.7(0.005) 13743 f ⎟ f
⎝ ⎠
As mentioned in the problem a good initial guess can be obtained from the Blasius formula
0.316
f = = 0.029185
13743 0.25
Using this guess, a root of 0.028968 can be obtained with an approach like the modified secant
method. This result can then be used to compute the pressure drop as
0.2(1.23)(40) 2
Δp = 0.028968 = 1140.17 Pa
2(0.005)
(b) For the rougher steel pipe, we must determine the root of
⎛ 0.000045 2.51 ⎞⎟ 1
g ( f ) = −2.0 log⎜ + − =0
⎜ 3.7(0.005) 13743 f ⎟ f
⎝ ⎠
Using the same initial guess as in (a), a root of 0.04076 can be obtained. This result can then be used to
compute the pressure drop as
0.2(1.23)(40) 2
Δp = 0.04076 = 1604.25 Pa
2(0.005)
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
8
Thus, as would be expected, the pressure drop is higher for the rougher pipe.
Cout 1 1 ⎡ ⎛ C out ⎞ ⎤
∫
K
− + dC = − ⎢ K ln⎜⎜ ⎟⎟ + C out − C in ⎥
Cin k max C k max k max ⎢⎣ ⎝ C in ⎠ ⎥⎦
V 1 ⎡ ⎛ C out ⎞ ⎤
f (C out ) = + ⎢ K ln⎜⎜ ⎟⎟ + C out − C in ⎥
F k max ⎣⎢ ⎝ C in ⎠ ⎦⎥
250 P
f ( P / A) = −
1 + 0.4 / cos[25 ( P / A) / 200,000 ] A
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
9
200
100
0
0 50 100 150 200 250
-100
(
f ( x) = 10 − 20 e −0.15 x − e −0.5 x − 5 = 0)
A plot of the function indicates a root at about x = 1 km.
6
4
2
0
-2 0 2 4 6 8 10
-4
Bisection can be used to determine the root. Here are the first few iterations:
After 10 iterations, the root is determined as x = 0.971679688 with an approximate error of 0.5%.
(b) The location of the minimum can be determined by differentiating the original function to yield
The root of this function can be determined as x = 3.44 km. The value of the minimum concentration
can then be computed as
(
c = 10 − 20 e −0.15(3.44) − e −0.5(3.44) = 1.6433)
8.16 (a) This problem can be solved by determining the root of
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
10
100
80
60
40
20
0
-20 0 2 4 6 8 10
Using the initial guess of t = 6, an accurate root determination can be obtained in a few iterations:
i xi f(xi) f'(xi) εa
0 6 -2.23818 -0.97033
1 3.693371 0.455519 -1.57879 62.45%
2 3.981896 0.02752 -1.39927 7.25%
3 4.001563 9.84E-05 -1.3893 0.49%
The result can be checked by substituting it back into the original equation to yield a prediction close
to 15:
TA ⎛ 600 ⎞ T
f (T A ) = cosh⎜⎜ ⎟⎟ + 6 − A − 15
12 ⎝ TA ⎠ 12
100
50
0
0 500 1000 1500 2000 2500
-50
8.18 This problem can be solved by determining the root of the derivative of the elastic curve
dy
dx
=0=
w0
120 EIL
(
− 5 x 4 + 6 L2 x 2 − L4 )
Therefore, after substituting the parameter values, we must determine the root of
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
11
2E+11
1E+11
0
-1E+11 0 100 200 300 400 500 600
-2E+11
Bisection can be used to determine the root. Here are the first few iterations:
After 20 iterations, the root is determined as x = 268.328. This value can be substituted into Eq.
(P8.18) to compute the maximum deflection as
2.5
y= (−(268.328) 5 + 720,000(268.328) 3 − 1.296 × 1011 (268.328)) = −0.51519
120(50,000)30,000(600)
10
5
0
-5 0 0.1 0.2 0.3 0.4 0.5
-10
i t f(t) f'(t) εa
0 0.3 -0.85651 -29.0483
1 0.270514 -0.00335 -28.7496 10.899824%
2 0.270398 -1.2E-07 -28.7476 0.043136%
3 0.270398 0 -28.7476 0.000002%
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
12
(c) The secant method can be implemented with initial guesses of 0.3,
i ti – 1 f(ti – 1) ti f(ti) εa
0 0.2 1.951189 0.4 -3.69862
1 0.4 -3.69862 0.269071 0.038125 48.66%
2 0.269071 0.038125 0.270407 -0.00026 0.49%
3 0.270407 -0.00026 0.270398 1.07E-07 0.0034%
8.20 Two solutions are immediately apparent. We can either solve for the H in the numerator
(Qn) 3 / 5 ( B + 2 H ) 2 / 5
H=
BS 3 / 10
or the denominator
1 ⎡ S 3 / 4 ( BH )5 / 2 ⎤
H= ⎢ 3/ 2
− B⎥
2 ⎣⎢ (Qn) ⎦⎥
Physical reasoning can be helpful in choosing between these alternatives. For most rivers and streams,
the width is much greater than the depth. Thus, the quantity B + 2H should not vary much. In fact, it should
be roughly equal to B. In comparison, BH is directly proportional to H. Consequently, the first alternative
should home in more rapidly on the root. This can be verified by substituting the brackets of H = 0 and 10
into both equations. For the first equation, the results are 0.6834 and 0.9012, which are both close to the
true value of 0.7023. In contrast, the results for the second alternative are −10 and 8,178, which clearly are
distant from the root. The superiority of the first version is further supported by component plots:
As in (a), the g(H) component for the first version is almost flat. Thus, it will not only converge, but
should do so rapidly. In contrast, as in (b), the g(H) component for the second version is almost vertical,
connoting strong and rapid divergence.
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
13
⎛ 2πx ⎞ ⎛ 2π (12)48 ⎞ −x
0.5 = sin ⎜ ⎟ cos⎜ ⎟+e
⎝ 16 ⎠ ⎝ 16 ⎠
or
⎛π ⎞
f ( x) = sin ⎜ x ⎟ + e − x − 0.4
⎝8 ⎠
1
0.5
0
-0.5 0 5 10 15
-1
-1.5
-2
i (1 + i ) 6
f (i ) = 25,000 − 5,500
(1 + i ) 6 − 1
0
0 0.02 0.04 0.06 0.08 0.1
-500
-1000
-1500
(
f (t ) = 1.2 75,000e −0.045t + 100,000 − ) 300,000
1 + 29e −0.08t
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
14
300000
200000
100000
0
-100000 0 20 40 60 80 100
-200000
(b) The false-position method can be implemented with the results summarized as
(c) The modified secant method (with δ = 0.01) can be implemented with the results summarized as
For both parts (b) and (c), the root is determined to be t = 39.6068. At this time, the ratio of the
suburban to the urban population is 135,142.5/112,618.7 = 1.2.
0
0 2 4 6 8 10
-50
-100
Thus, a zero value occurs at approximately x = 2.8. A numerical solution can be developed in a number
of ways. Using MATLAB, we would first formulate an M-file for the shear function as:
function f = V(x)
f=20*(sing(x,0,1)-sing(x,5,1))-15*sing(x,8,0)-57;
function s = sing(x, a, n)
if x > a
s = (x - a) ^ n;
else
s = 0;
end
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
15
We can then either design our own M-file or use MATLAB’s built-in capabilities like the fzero
function. A session using the fzero function would yield a root of 2.85 as shown here,
>> x=fzero(@V,5)
x =
2.8500
-100
Thus, a zero value occurs at approximately x = 5.8. A numerical solution can be developed in a number
of ways. Using MATLAB, we would first formulate an M-file for the moment function as:
function f = Mx(x)
f=-10*(sing(x,0,2)-sing(x,5,2))+15*sing(x,8,1)+150*sing(x,7,0)+57*x;
function s = sing(x, a, n)
if x > a
s = (x - a) ^ n;
else
s = 0;
end
We can then either design our own M-file implementing one of the numerical methods in the book or
use MATLAB’s built-in capabilities like the fzero function. A session using the fzero function
would yield a root of 5.814 as shown here,
>> x=fzero(@Mx,5)
x =
5.8140
200
100
0
-100 0 2 4 6 8 10
-200
-300
Thus, a zero value occurs at approximately x = 3.9. A numerical solution can be developed in a number
of ways. Using MATLAB, we would first formulate an M-file for the slope function as:
function f = duydx(x)
f=-10/3*(sing(x,0,3)-sing(x,5,3))+7.5*sing(x,8,2)+150*sing(x,7,1)+57/2*x^2-238.25;
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
16
function s = sing(x, a, n)
if x > a
s = (x - a) ^ n;
else
s = 0;
end
We can then either design our own M-file implementing one of the numerical methods in the book or
use MATLAB’s built-in capabilities like the fzero function. A session using the fzero function
would yield a root of 3.9357 as shown here,
>> x=fzero(@duydx,5)
x =
3.9357
0 2 4 6 8 10
0
-200
-400
-600
Therefore, other than the end supports, there are no points of zero displacement.
(b) The location of the minimum can be determined by locating the zero of the slope function as
described in Prob. 8.26.
⎡ 2 ⎤
1 ⎛ 280 ⎞
f (C ) = e − 280(0.05) /( 2(7.5)) cos ⎢ − ⎜⎜ ⎟⎟ (0.05)⎥ − 0.01
⎢ 7.5C ⎝ 2(7.5) ⎠ ⎥
⎢⎣ ⎥⎦
or
⎡ 1 ⎤
f (C ) = 0.393241 cos ⎢ − 348.4444 (0.05)⎥ − 0.01
⎢⎣ 7.5C ⎥⎦
0.E+00
0.E+00 1.E-04 2.E-04
-3.E-01
-6.E-01
(b) Bisection:
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
17
After 14 iterations, the root is determined as 0.000102277 with an approximate error of 0.006%.
(c) In order to use MATLAB, we can first set up a function to hold the equation to be solved,
function f = prob0828(C)
t = 0.05; R = 280; L = 7.5; goal = 0.01;
f=exp(-R*t/(2*L))*cos(sqrt(1/(L*C)-(R/(2*L))^2)*t)-goal;
f (t ) = 9e −t cos(2πt ) − 3.5
0
0 0.5 1 1.5 2
-5
-10
Using the Excel Solver and an initial guess of 0 yields a root of t = 0.173467.
2
f (N ) = 0 = −ρ
q⎛⎜ N + N 2 + 4ni2 ⎞⎟ μ
⎝ ⎠
where
−2.42
⎛ 1000 ⎞
μ = 1350⎜ ⎟ = 73.2769
⎝ 300 ⎠
2
f (N ) = 0 = − 6.5 × 106
−17 ⎛ 2 20 ⎞
1.24571 × 10 ⎜ N + N + 1.54256 × 10 ⎟
⎝ ⎠
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
18
6.E+06
4.E+06
2.E+06
0.E+00
0.0E+00
-2.E+06 1.0E+10 2.0E+10
-4.E+06
(b) The bisection method can be implemented with the results for the first 5 iterations summarized as
(c) The modified secant method (with δ = 0.01) can be implemented with the results summarized as
x
f ( x) = 0 = 1 − 3.59672
( x + 0.81)3 / 2
2
-1
A numerical method can be used to determine that the roots are 0.22135 and 1.50979.
2
⎛ 2⎞
f (ω ) = 0 = 0.01333333 − 1.97531 × 10 − 5 + ⎜ 6 × 10 − 7 ω − ⎟
⎝ ω⎠
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
19
0
0 200 400 600 800 1000
-0.5
Note that the shape of the curve suggests that it may be ill-suited for solution with the false-position
method (refer to Fig. 5.14). This conclusion is borne out by the following results for bisection and false
position.
(b) The bisection method can be implemented with the results for the first 5 iterations summarized as
After 13 iterations, the root is 157.9474 with an approximate relative error of 0.077%.
(c) The false-position method can be implemented with the results for the first 5 iterations summarized
as
After 578 iterations, the root is 189.4316 with an approximate error of 0.0998%. Note that the true
error is actually about 20%. Therefore, the false position method is a very poor choice for this problem.
f ( f ) = 4 log10 Re ( )
f − 0.4 −
1
f
We want our program to work for Reynolds numbers between 2,500 and 1,000,000. Therefore, we must
determine the friction factors corresponding to these limits. This can be done with any root location method
to yield 0.011525 and 0.002913. Therefore, we can set our initial guesses as xl = 0.0028 and xu = 0.012.
Equation (5.5) can be used to determine the number of bisection iterations required to attain an absolute
error less than 0.000005,
⎛ Δx 0 ⎞
n = log 2 ⎜ ⎟ = log 2 ⎛⎜ 0.012 − 0.0028 ⎞⎟ = 10.8454
⎜E ⎟ ⎝ 0.000005 ⎠
⎝ a, d ⎠
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
20
which can be rounded up to 11 iterations. Here is a VBA function that is set up to implement 11 iterations
of bisection to solve the problem. Note that because VBA does not have a built-in function for the common
logarithm, we have developed a user-defined function for this purpose.
Function log10(x)
log10 = Log(x) / Log(10)
End Function
This can be implemented in Excel. Here are the results for a number of values within the desired range. We
have included the true value and the resulting error to verify that the results are within the desired error
criterion of Ea < 5×10–6.
Re Root Truth Et
2500 0.011528320 0.011524764 3.56E-06
3000 0.010890430 0.010890229 2.01E-07
10000 0.007727930 0.007727127 8.02E-07
30000 0.005877148 0.005875048 2.10E-06
100000 0.004502539 0.004500376 2.16E-06
300000 0.003622070 0.003617895 4.18E-06
1000000 0.002912305 0.002912819 5.14E-07
2k 2 d 5 / 2 1
f (d ) = 0 = + k1d 2 − mgd − mgh
5 2
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
21
0
0 0.05 0.1 0.15 0.2
-250
-500
The only realistic value is 1,126. This value can be checked using the polyval function,
>> polyval(x,1126)
ans =
-1.296516228432854e-006
g
f (θ 0 ) = (tan θ 0 ) x − x 2 + y0 − y
2v02 cos 2 θ 0
15.0215625
f (θ 0 ) = 0 = 35 tan (πθ0 / 180 ) − +1
cos 2 (πθ0 / 180 )
where θ0 is expressed in degrees. A plot of this function indicates roots at about θ0 = 27o and 61o.
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
22
10
5
0
-5 0 10 20 30 40 50 60 70
-10
-15
The Excel solver can then be used to determine the roots to higher accuracy. Using an initial guesses of 27o
and 61o yields θ0 = 27.2036o and 61.1598o, respectively. Therefore, two angles result in the desired
outcome. Note that the lower angle would probably be preferred as the ball would arrive at the catcher
faster.
8.37 This problem was solved using the roots command in MATLAB.
>> I=10+7+16;
>> II=10*7+10*16+7*16-14^2-25^2-15^2;
>> III=10*7*16-10*15^2-7*25^2-16*14^2+2*14*25*15;
>> c=[1 -I II -III]
c =
1 -33 -704 -1859
>> roots(c)
ans =
48.354283925405085
-12.204072966723880
-3.150210958681167
Therefore,
m0
f (t ) = u ln − gt − v
m0 − qt
150,000
f (t ) = 2,000 ln − 9.81t − 750
150,000 − 2,700t
4000
3000
2000
1000
0
-1000 0 10 20 30 40 50 60
Because two initial guesses are given, a bracketing method like bisection can be used to determine the
root,
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
23
Thus, after 8 iterations, the approximate error falls below 1% with a result of t = 21.09375. Note that if
the computation is continued, the root can be determined as 21.13242.
0.007158ω
f (ω ) = tan(ω / 3 − 1) −
1 − (ω / 34.119887) 2
0.5
0
-0.5 0 1 2 3 4
-1
-1.5
-2
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
24
8.41 The problem reduces to finding the value of n that drives the second part of the equation to 1. In other
words, finding the root of
f ( n) =
n
n −1
( )
Rc ( n −1) / n − 1 − 1 = 0
Inspection of the equation indicates that singularities occur at x = 0 and 1. A plot indicates that
otherwise, the function is smooth.
0.5
0
0 0.5 1 1.5
-0.5
-1
A tool such as the Excel Solver can be used to locate the root at n = 0.8518.
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
25
8.43 For this problem, two continuity conditions must hold. First, the flows must balance,
Q1 = Q2 + Q3 (1)
Second, the energy balance must hold. That is, the head losses in pipes 1 and 3 must balance the
elevation drop between reservoirs A and C,
Li Vi 2
H L,i = fi (3)
Di 2 g
The flows and velocities are related by the continuity equation, which for a circular pipe is
4Qi
Vi = (4)
πDi2
Finally, the Colebrook equation relates the friction factor to the pipe characteristics as in
1 ⎛ ε 2.51 ⎞
= −2.0 log⎜ i + ⎟
⎜ ⎟
fi ⎝ 3.7 Di Rei f i ⎠
Vi Di
Rei =
νi
PROPRIETARY MATERIAL. © The McGraw-Hill Companies, Inc. All rights reserved. No part of this Manual
may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the
publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their
individual course preparation. If you are a student using this Manual, you are using it without permission.
Other documents randomly have
different content
The Project Gutenberg eBook of The Library of
Work and Play: Housekeeping
This ebook is for the use of anyone anywhere in the United States
and most other parts of the world at no cost and with almost no
restrictions whatsoever. You may copy it, give it away or re-use it
under the terms of the Project Gutenberg License included with this
ebook or online at www.gutenberg.org. If you are not located in the
United States, you will have to check the laws of the country where
you are located before using this eBook.
Language: English
Housekeeping
By Elizabeth Hale Gilman.
Needlecraft
By Effie Archer Archer.
Outdoor Work
By Mary Rogers Miller.
Working in Metals
By Charles Conrad Sleffel.
Photograph by Helen W. Cooke
Have You a Play-House?
The Library of Work and Play
HOUSEKEEPING
BY
ELIZABETH HALE GILMAN
Garden City New York
DOUBLEDAY, PAGE & COMPANY
1911
CHAPTER
I. My Heritage 63
II. The Plan 69
III. The Accounts 87
IV. The Schedule 101
V. Possessions 115
VI. Care of Fittings and Furniture 121
VII. Upstairs Work 146
VIII. Dining-room and Pantry Work 160
IX. The Kitchen 188
X. The Cellar, Fires, Plumbing, etc. 208
XI. Menus and Marketing 244
XII. Cooking 274
XIII. Washing and Ironing 312
XIV. House Cleaning 337
XV. Emergencies 353
XVI. Servants 370
XVII. Martha 382
XVIII. The Inspiration 388
ILLUSTRATIONS
Have You a Playhouse? Frontispiece
FACING PAGE
A Playhouse Somebody Else Has Made 14
Tidying 52
The Account Book 90
The Broom Closet 140
Straight and Smooth 150
Air, Sun, and Water 156
Order and Daintiness 164
Cooking 274
PART I
THE PLAY-HOUSE
THE PLAY-HOUSE
Monday, I wash my dollies' clothes,
And Tuesday, smoothly press them.
Wednesday, I mend their little hose,
And Thursday, neatly dress them.
Friday, I play they're very ill,
Saturday, something or other.
Sunday, I say, "Lie still,
I'm going to church with mother."