Solution Manual Latest Updated Study Guide Exam
Questions and Answers Full Revision Notes Electrical
Wiring Standards Safety Regulations Installation
Practices Circuit Design Grounding Protection Systems
Code Compliance Electrical Engineering Exam
Preparation Resource
Question 1: In the field of numerical methods for engineering computations, consider a
scenario where an engineer is calculating the deflection of a cantilever beam using a finite
difference approximation. The exact analytical solution yields a maximum deflection of 5.342
mm, while the numerical model predicts a deflection of 5.298 mm. Which of the following
best describes the primary source of this discrepancy, and how is it mathematically defined in
the context of numerical analysis?
A. Truncation error, which arises from using an approximation in place of an exact
mathematical procedure. B. Round-off error, which is caused by the finite precision of
computer representation of numbers. C. True error, defined as the difference between the true
value and the approximation. D. Absolute relative error, which normalizes the true error by the
true value to provide a percentage metric.
CORRECT ANSWER: C. True error, defined as the difference between the true value and the
approximation.
Rationale: The true error (Et) is defined as the difference between the true value and the
approximate value, expressed as Et = True - Approx. While truncation and round-off are sources
of error, the specific metric described as the direct difference between the exact analytical
solution and the numerical prediction is the true error.
Question 2: When evaluating the performance of a numerical algorithm, engineers often rely
on the concept of significant digits to determine the reliability of an approximation. If an
approximate solution for the stress in a structural member is calculated as 12.34 MPa, and
this approximation is said to be correct to at least three significant digits, what is the
maximum allowable absolute relative approximate error percentage based on the standard
numerical methods criterion?
A. 0.5% B. 0.05% C. 5.0% D. 0.005%
CORRECT ANSWER: B. 0.05%
Rationale: The criterion for ensuring that a result is correct to at least n significant digits is that
the absolute relative approximate error must be less than a prescribed tolerance. For three
significant digits, the formula is (0.5 * 10^(2-n))%, which evaluates to (0.5 * 10^(-1))% = 0.05%.
,Question 3: In the context of error propagation within numerical computations, consider two
measured quantities, x and y, with known absolute errors Δx and Δy. If an engineer calculates
a derived quantity z = x * y, which of the following expressions correctly represents the
maximum possible absolute error Δz in the calculated result, assuming the errors are small
and independent?
A. Δz = Δx * Δy B. Δz = x * Δy + y * Δx C. Δz = (Δx / x) + (Δy / y) D. Δz = x * Δx + y * Δy
CORRECT ANSWER: B. Δz = x * Δy + y * Δx
Rationale: For multiplication z = x * y, the maximum absolute error is derived using the total
differential dz = (∂z/∂x)dx + (∂z/∂y)dy. Substituting the partial derivatives yields dz = ydx + xdy.
Replacing differentials with absolute errors gives Δz = yΔx + xΔy.
Question 4: Taylor series expansion is a fundamental mathematical tool in numerical
methods used to predict the value of a function at a point based on its value and derivatives
at an adjacent point. When predicting f(x_{i+1}) using the Taylor series expansion around x_i,
what is the mathematical expression for the first-order truncation error term, also known as
the remainder or residual?
A. f'(x_i) * h B. f''(x_i) * h^! C. f''(ξ) * h^! D. f'''(ξ) * h^!
CORRECT ANSWER: C. f''(ξ) * h^!
Rationale: The first-order Taylor series approximation is f(x_{i+1}) ≈ f(x_i) + f'(x_i)h. The
remainder term (truncation error) for this first-order approximation is the next term in the
series, evaluated at some point ξ between x_i and x_{i+1}, which is f''(ξ) * h^!, where h is
the step size.
Question 5: The condition number of a matrix is a crucial concept in numerical linear algebra,
particularly when solving systems of linear equations using computational algorithms. If a
system of equations Ax = b has a matrix A with a very high condition number, how will this
characteristic primarily affect the numerical solution process, and what is the underlying
mathematical reason?
A. It will cause the iterative methods to converge much faster due to the strong diagonal
dominance of the matrix. B. It will make the system highly sensitive to small changes or round-
off errors in the input data, leading to large errors in the solution. C. It will guarantee that the
matrix is perfectly singular, meaning no unique solution exists for the system of equations. D. It
will ensure that the Gauss elimination process requires fewer pivoting operations, thereby
reducing the overall computational time.
CORRECT ANSWER: B. It will make the system highly sensitive to small changes or round-off
errors in the input data, leading to large errors in the solution.
,Rationale: The condition number measures the sensitivity of the output to small changes or
errors in the input. A high condition number indicates an ill-conditioned matrix, where even
tiny round-off errors or measurement inaccuracies in the coefficients can be amplified
significantly, resulting in a highly inaccurate solution vector.
Question 6: In the bisection method for finding roots of a nonlinear equation f(x) = 0, the
initial interval [x_l, x_u] must satisfy a specific condition to guarantee convergence to a root.
Assuming f(x) is continuous on the interval, which of the following mathematical conditions
must hold true for the method to be initialized correctly, and what is the theoretical basis for
this requirement?
A. f(x_l) * f(x_u) < 0, based on the Intermediate Value Theorem. B. f(x_l) + f(x_u) = 0, based on
the Mean Value Theorem. C. f'(x_l) * f'(x_u) < 0, based on Rolle's Theorem. D. f(x_l) * f(x_u) > 0,
based on the Extreme Value Theorem.
CORRECT ANSWER: A. f(x_l) * f(x_u) < 0, based on the Intermediate Value Theorem.
Rationale: The bisection method relies on the Intermediate Value Theorem, which states that if
a continuous function has values of opposite signs at the endpoints of an interval, it must have
at least one root within that interval. Therefore, f(x_l) and f(x_u) must have opposite signs,
meaning their product is negative.
Question 7: An engineer is using the false position (regula falsi) method to find the root of a
continuous function f(x) = 0 within the interval [x_l, x_u]. Unlike the bisection method which
simply takes the midpoint, the false position method calculates a new estimate x_r by
connecting the endpoints with a straight line. Which of the following formulas correctly
represents the calculation of this new estimate x_r?
A. x_r = (x_l + x_u) / 2 B. x_r = x_u - f(x_u) * [(x_l - x_u) / (f(x_l) - f(x_u))] C. x_r = x_l - f(x_l) /
f'(x_l) D. x_r = (x_l * f(x_u) - x_u * f(x_l)) / (f(x_u) + f(x_l))
CORRECT ANSWER: B. x_r = x_u - f(x_u) * [(x_l - x_u) / (f(x_l) - f(x_u))]
Rationale: The false position method finds the root of the secant line connecting the points (x_l,
f(x_l)) and (x_u, f(x_u)). By setting the equation of this line to zero and solving for x, the formula
x_r = x_u - f(x_u) * [(x_l - x_u) / (f(x_l) - f(x_u))] is derived. This incorporates the magnitude of
the function values to weight the new estimate closer to the root.
Question 8: When applying open methods for root finding, such as the fixed-point iteration
method x_{i+1} = g(x_i), convergence is not guaranteed as it is with bracketing methods.
According to the fixed-point iteration theorem, what is the sufficient condition for the
sequence of iterations to converge to a unique fixed point p in the interval [a, b]?
A. g(x) must be continuous on [a, b], and there must exist a constant 0 < K < 1 such that |g'(x)|
<= K for all x in (a, b). B. g(x) must be differentiable on [a, b], and g'(x) must be strictly greater
, than 1 for all x in (a, b). C. g(x) must be continuous on [a, b], and g(a) * g(b) < 0. D. g(x) must be
a polynomial of degree at least 2, and g''(x) must not change sign on [a, b].
CORRECT ANSWER: A. g(x) must be continuous on [a, b], and there must exist a constant 0 < K
< 1 such that |g'(x)| <= K for all x in (a, b).
Rationale: The fixed-point iteration theorem states that if g(x) is continuous and its derivative
satisfies the condition |g'(x)| <= K < 1 (a contraction mapping), the iteration will converge to a
unique fixed point. If |g'(x)| > 1, the iterations will typically diverge away from the root.
Question 9: The Newton-Raphson method is one of the most widely used open methods for
finding roots of equations due to its rapid convergence. However, it has specific limitations
and potential failure modes. In which of the following scenarios will the Newton-Raphson
method definitively fail or encounter a critical computational error during its execution?
A. When the initial guess is very close to the actual root, causing the iterations to oscillate
slightly before converging. B. When the function f(x) has a multiple root, causing the
convergence rate to drop from quadratic to linear. C. When the derivative f'(x_i) evaluates to
zero at any iteration point, resulting in a division by zero error. D. When the function f(x) is
highly nonlinear, requiring more than ten iterations to reach the prescribed tolerance.
CORRECT ANSWER: C. When the derivative f'(x_i) evaluates to zero at any iteration point,
resulting in a division by zero error.
Rationale: The Newton-Raphson formula is x_{i+1} = x_i - f(x_i) / f'(x_i). If at any point the
tangent to the curve is horizontal, meaning f'(x_i) = 0, the method requires division by zero,
which is mathematically undefined and causes a computational failure. While multiple roots
slow convergence, they do not cause an immediate failure like a zero derivative does.
Question 10: In numerical analysis, the secant method is often presented as a modification of
the Newton-Raphson method to overcome the need for analytical derivatives. How does the
secant method approximate the derivative f'(x_i) required in the Newton-Raphson formula,
and what is the resulting implication for the number of initial guesses required?
A. It approximates the derivative using a forward finite difference, requiring only one initial
guess. B. It approximates the derivative using a backward finite difference, requiring only one
initial guess. C. It approximates the derivative using a central finite difference, requiring three
initial guesses. D. It approximates the derivative using a backward finite difference based on
two previous iterations, requiring two initial guesses.
CORRECT ANSWER: D. It approximates the derivative using a backward finite difference based
on two previous iterations, requiring two initial guesses.
Rationale: The secant method replaces the derivative in the Newton-Raphson method with a
backward finite difference approximation: f'(x_i) ≈ [f(x_{i-1}) - f(x_i)] / [x_{i-1} - x_i]. Because