You are on page 1of 12

CES513 | Topic 1

Topic 1: Solution of Nonlinear Equations


Learning Outcomes.

At the end of this lecture, you should be able to:

1. Analyze, identify, formulate and solve related civil engineering problems using the Bisection
Method (CO1:PO2)
2. Use the Newton-Raphson to solve civil engineering method according to the required absolute
relative error or true error (CO1:PO2)

MOTIVATION
Roots of equations.

We had learned to use the quadratic formula:

𝑏𝑏 ± √𝑏𝑏 2 − 4𝑎𝑎𝑎𝑎 (1-1)


𝑥𝑥 =
2𝑎𝑎
to solve

𝑓𝑓(𝑥𝑥 ) = 𝑎𝑎𝑥𝑥 2 + 𝑏𝑏𝑏𝑏 + 𝑐𝑐 = 0 (1-2)

The values calculated with Eq. (1-1) are called the “roots” of Eq. (1-2) as they represent the values of
x that make Eq. (1-2) equal to zero. For this reason, roots are sometimes called the zeros of the
equation. Although the quadratic formula is handy for solving Eq. (1-2), there are many other functions
for which the root cannot be determined so easily. For these cases, the use of numerical methods
could provide efficient means to obtain the answer.

Non computer methods for determining ‘roots’.

Before the advent of digital computers, there were several ways to solve for roots of algebraic and
transcendental equations. These includes:

1. Direct method
As the above example, Eq. (1-2) can be solved directly using the quadratic formula, Eq. (1-1).
Although there were equations that could be solved directly, there were many more that
could not. For example, even an apparently simple function such as f(x) = e−x cannot be
solved analytically. In such instances, the only alternative is an approximate solution
technique.
2. Graphical technique
One method to obtain an approximate solution is to plot the function and determine where
it crosses the x axis. This point, which represents the x value for which 𝑓𝑓 (𝑥𝑥 ) = 0, is the root.
Although graphical methods are useful for obtaining rough estimates of roots, they are limited
because of their lack of precision.
3. Trial and error.
This technique consists of guessing a value of x and evaluating whether 𝑓𝑓 (𝑥𝑥 ) is zero. If not (as
is almost always the case), another guess is made, and 𝑓𝑓(𝑥𝑥 ) is again evaluated to determine

NW | Mac-July 2020
CES513 | Topic 1

whether the new value provides a better estimate of the root. The process is repeated until a
guess is obtained that results in an 𝑓𝑓(𝑥𝑥 ) that is close to zero.

Such unsystematic methods are obviously inefficient and inadequate for the requirements of
engineering practice. The techniques described later in this topic represent alternatives that are also
approximate but employ systematic strategies to focus on the true root. The combination of these
systematic methods and computers makes the solution of most applied roots-of-equations problems
a simple and efficient task.

Revision.

Example 1. Graphical Method

A parachutist’s velocity can be determine using equation,


𝑔𝑔𝑔𝑔 −�
𝑐𝑐
𝑓𝑓(𝑥𝑥 ) = �1 − 𝑒𝑒 𝑚𝑚�𝑡𝑡 � − 𝑣𝑣 (1-3)
𝑐𝑐

Use the graphical approach to determine the drag coefficient, c needed for a parachutist of mass, m
= 68.1 kg to have a velocity of 40 m/s after freefalling for time t = 10s. Note: The acceleration due to
gravity is 9.81 m/s2.

Solution:

This problem can be solved by determining the root of Eq. (1-3).


9.81(68.1) −�
𝑐𝑐
𝑓𝑓(𝑥𝑥 ) = �1 − 𝑒𝑒 6.81�10 � − 40
𝑐𝑐

Various values of c can be substituted into the right-hand side of this equation to compute the f(c).

NW | Mac-July 2020
CES513 | Topic 1

These points are plotted in the figure below. The resulting curve
crosses the c axis between 12 and 16. Visual inspection of the
plot provides a rough estimate of the root of 14.75.
The validity of the graphical estimate can be checked by
substituting it into Eq. (1-3) to yield:

9.81(68.1)
𝑓𝑓(14.75) = �1 − 𝑒𝑒 −0.146843(14.75) � − 40 = 0.100
14.75

which is close to zero. It can also be checked by substituting it


into the velocity equation to give

9.81(68.1)
𝑣𝑣 = �1 − 𝑒𝑒 −(14.75⁄68.1)10 � = 40.100
14.75

which is very close to the desired fall velocity of 40m/s.

Figure 1 - The graphical approach for


determining the roots of an equation.

NW | Mac-July 2020
CES513 | Topic 1

1.1 Bisection Method

The bisection method, which is alternatively called binary chopping, interval halving, or Bolzano’s
method, is one type of incremental search method in which the interval is always divided in half. If a
function changes sign over an interval, the function value at the midpoint is evaluated. The location
of the root is then determined as lying at the midpoint of the subinterval within which the sign change
occurs. The process is repeated to obtain refined estimates. The method is based on the following
theorem.

Theorem

An equation 𝑓𝑓 (𝑥𝑥 ) = 0 , where 𝑓𝑓(𝑥𝑥 ) is a real continuous function,

a. has at least one root between 𝑥𝑥𝑙𝑙 and 𝑥𝑥𝑢𝑢 if [𝑓𝑓 (𝑥𝑥𝑙𝑙 )𝑓𝑓(𝑥𝑥𝑢𝑢 ) < 0] - (See Figure 2)
b. there may or may not be any root between 𝑥𝑥𝑙𝑙 and 𝑥𝑥𝑢𝑢 if [𝑓𝑓(𝑥𝑥𝑙𝑙 )𝑓𝑓 (𝑥𝑥𝑢𝑢 ) > 0] - (Figure 3 and Figure 4)
c. there may be more than one root between 𝑥𝑥𝑙𝑙 and 𝑥𝑥𝑢𝑢 if [𝑓𝑓(𝑥𝑥𝑙𝑙 )𝑓𝑓(𝑥𝑥𝑢𝑢 ) < 0] - (Figure 5)

Figure 2 - At least one root exists between the two Figure 3 – If the function f(x) does not change sign between
points if the function is real, continuous and changes the two points, roots of the equation f(x)=0 may still be exists
sign. between the two points.

Figure 5 - If the function f(x) changes sign between the two


Figure 4 - If the function f(x) does not change sign
points, more than one root for the equation f(x)=0 may exist
between two points, there may not be any roots for the
between the two points.
equation f(x)= 0 between the two points.

NW | Mac-July 2020
CES513 | Topic 1

A simple algorithm for the bisection calculation is listed below:-

Example 2. Bisection method

Use bisection method to solve the same problem approached graphically in Example 1

Solution.

1st iteration.

[ 𝒙𝒙𝒍𝒍 = 12; 𝒙𝒙𝒖𝒖 = 16; 𝒙𝒙𝒓𝒓 = 14 ]

The first step in bisection is to guess two values of the unknown that give values for 𝑓𝑓(𝑥𝑥 ) with different
signs. From Figure 1, we can see that the function changes sign between values of 12 and 16, that is
the lower bound, 𝒙𝒙𝒍𝒍 and upper bound, 𝒙𝒙𝒖𝒖 respectively. Figure 6 shows the graphical depiction of the
bisection method for this example.

Figure 6 - A graphical depiction of the bisection method.

NW | Mac-July 2020
CES513 | Topic 1

Therefore, the initial estimate of the root 𝒙𝒙𝒓𝒓 lies at the midpoint of the interval:
𝑥𝑥𝑙𝑙 + 𝑥𝑥𝑢𝑢 12 + 16
𝑥𝑥𝑟𝑟 = → 𝑥𝑥𝑟𝑟 = = 14
2 2
This estimate represents a true percent relative error of 𝜀𝜀𝑡𝑡 = 5.4% (note that the true value of the
root is 14.8011).
𝑡𝑡𝑡𝑡𝑡𝑡𝑡𝑡 𝑣𝑣𝑣𝑣𝑣𝑣𝑣𝑣𝑣𝑣 − 𝑎𝑎𝑎𝑎𝑎𝑎𝑎𝑎𝑎𝑎𝑎𝑎𝑎𝑎𝑎𝑎𝑎𝑎𝑎𝑎𝑎𝑎𝑎𝑎𝑎𝑎 14.8011 − 14
𝜀𝜀𝑡𝑡 = 100% → 𝜀𝜀𝑡𝑡 = 100% = 5.4%
𝑡𝑡𝑡𝑡𝑡𝑡𝑡𝑡 𝑣𝑣𝑣𝑣𝑣𝑣𝑣𝑣𝑣𝑣 14.8011
Next we compute the product of the function value at the lower bound and at the midpoint:
9.81(68.1) −�
12
𝑓𝑓(𝑥𝑥𝑙𝑙 ) = 𝑓𝑓(12) = �1 − 𝑒𝑒 68.1�10 � − 40 = 6.114
12
9.81(68.1) −�
14
𝑓𝑓(𝑥𝑥𝑟𝑟 ) = 𝑓𝑓 (14) = �1 − 𝑒𝑒 68.1�10 � − 40 = 1.611
14
𝑓𝑓(𝑥𝑥𝑙𝑙 )𝑓𝑓(𝑥𝑥𝑟𝑟 ) = 𝑓𝑓(12)𝑓𝑓(14) = 6.114(1.611) = 𝟗𝟗. 𝟖𝟖𝟖𝟖𝟖𝟖

9.850 > 0, and hence no sign change occurs between the lower bound and the midpoint.
Consequently, the root must be located between 14 and 16.

2nd iteration.

[ 𝒙𝒙𝒍𝒍 = 14 ; 𝒙𝒙𝒖𝒖 = 16; 𝒙𝒙𝒓𝒓 = 15 ]

Therefore, new interval created by redefining the lower bound as 14 and determining a revised root
estimate as
14 + 16
𝑥𝑥𝑟𝑟 = = 15
2
which represents a true percent error of 𝜀𝜀𝑡𝑡 = 1.3%. The process can be repeated to obtain refined
estimates. For example,

𝑓𝑓(14)𝑓𝑓 (15) = 1.611(−0.384) = −0.619

Meaning that the root is between 14 and 15.

3rd iteration.

[ 𝒙𝒙𝒍𝒍 = 14 ; 𝒙𝒙𝒖𝒖 = 15; 𝒙𝒙𝒓𝒓 = 14.5 ]

The upper bound is redefined as 15, and the root estimate for the third iteration is calculated as
14 + 15
𝑥𝑥𝑟𝑟 = = 14.5
2
which represents a percent relative error of 𝜀𝜀𝑡𝑡 = 2.0%. The method can be repeated until the result
is accurate enough to satisfy your needs.

NW | Mac-July 2020
CES513 | Topic 1

Termination Criteria and Error Estimates

The steps in Bisection Method can be repeated until the result is accurate enough and a refined
estimation of the root is obtained. Thus, an objective criterion is needed for deciding when to
terminate the method.

An initial suggestion might be to end the calculation when the true error falls below some prespecified
level. This strategy is flawed because the error estimates in the example were based true root of the
function. This would not be the case in an actual situation because there would be no point in using
the method if we already knew the root.

Therefore, an estimated error that is not dependent on the actual root of the function (which we don’t
exactly know). One is called as an approximate percent relative error 𝜀𝜀𝑎𝑎 which can be calculated as

𝑥𝑥𝑟𝑟𝑛𝑛𝑛𝑛𝑛𝑛 − 𝑥𝑥𝑟𝑟𝑜𝑜𝑜𝑜𝑜𝑜
𝜀𝜀𝑎𝑎 = � � 100% (1-4)
𝑥𝑥𝑟𝑟𝑛𝑛𝑛𝑛𝑛𝑛

Where,

𝑥𝑥𝑟𝑟𝑛𝑛𝑛𝑛𝑛𝑛 - root for the present iteration

𝑥𝑥𝑟𝑟𝑜𝑜𝑜𝑜𝑜𝑜 - root from the previous iteration

When 𝜀𝜀𝑎𝑎 becomes less than a prespecified stopping criterion, 𝜺𝜺𝒔𝒔 or ( |𝜀𝜀𝑎𝑎 | < 𝜀𝜀𝑠𝑠 ) the computation is
terminated.

It is also convenient to relate these errors to the number of significant figures in the approximation. It
can be shown that if the following criterion is met, we can be assured that the result is correct to at
least n significant figures.

𝜀𝜀𝑠𝑠 = (0.5 × 102−𝑛𝑛 )% (1-5)

Example 3. Error estimates for Bisection

Continue Example 2 until the approximate error falls below a prespecified stopping criterion of 𝜺𝜺𝒔𝒔 =
𝟎𝟎. 𝟓𝟓%.

Solution.

The results of the first two iterations for Example 2 were 14 and 15. Substituting these values into Eq.
(1-4) yields
15 − 14
𝜀𝜀𝑎𝑎 = � � 100% = 6.667%
15
Recall that the true percent relative error for the root estimate of 15 was 1.3%. Therefore, 𝜀𝜀𝑎𝑎 is greater
than 𝜀𝜀𝑡𝑡 . This behavior is manifested for the other iterations as in the table below:

NW | Mac-July 2020
CES513 | Topic 1

Thus, after six iterations 𝜀𝜀𝑎𝑎 finally falls below 𝜀𝜀𝑠𝑠 = 0.5%, and the computation can be terminated.

These results are summarized in the above table. The “ragged” nature of the true error is due to the
fact that, for bisection, the true root can lie anywhere within the bracketing interval.

The true and approximate errors are far apart when the interval happens to be centered on the true
root. They are close when the true root falls at either end of the interval.

Example 4. Bisection Method

A float ball in a flush toilet shown in Figure 7 has a specific gravity of 0.6 and a radius of 5.5 cm.

Figure 7 – Float ball problem.

You are asked to find the depth to which the ball is submerged when floating in water. The depth 𝑥𝑥 to
which the ball is submerged under water is expressed as:

𝑥𝑥 3 − 0.165𝑥𝑥 2 + 3.993 × 10−4 = 0


a. Use the bisection method to find the roots of the above equation for the depth of the
submerged part, 𝑥𝑥. Conduct three iterations and find the relative approximate error at the
end of each iteration.
b. Continue the iteration until the absolute value of the approximate error estimate 𝜀𝜀𝑎𝑎 falls
below a prespecified error criterion 𝜀𝜀𝑠𝑠 conforming to two significant figures.

Solution (a).

From the physics of the problem, the ball would be submerged between 𝑥𝑥 = 0 and 𝑥𝑥 = 2𝑅𝑅 , where

𝑅𝑅 = radius of the ball; that is 0 ≤ 𝑥𝑥 ≤ 2𝑅𝑅


0 ≤ 𝑥𝑥 ≤ 2(0.055)
0 = 𝑥𝑥 = 0.11

NW | Mac-July 2020
CES513 | Topic 1

Let’s us assume; 𝑥𝑥𝑙𝑙 = 0, 𝑥𝑥𝑢𝑢 = 0.11

𝑓𝑓(𝑥𝑥𝑙𝑙 ) = 𝑓𝑓(0) = (0)3 − 0.165(0)2 + 3.993 × 10−4 = 3.993 × 10−4

𝑓𝑓(𝑥𝑥𝑢𝑢 ) = 𝑓𝑓 (0.11) = (0.11)3 − 0.165(0.11)2 + 3.993 × 10−4 = −2.662 × 10−4

Hence

𝑓𝑓(𝑥𝑥𝑙𝑙 )𝑓𝑓(𝑥𝑥𝑢𝑢 ) = 𝑓𝑓(0)𝑓𝑓(0.11) = 3.993 × 10−4 (−2.662 × 10−4 ) = −1.0629 × 10−7 [ < 0 ]

Meaning that, at least one root exists between 𝑥𝑥𝑙𝑙 and 𝑥𝑥𝑢𝑢 , that is between 0 and 0.11.

1st iteration.

[ 𝒙𝒙𝒍𝒍 = 0 ; 𝒙𝒙𝒖𝒖 = 0.11; 𝒙𝒙𝒓𝒓 = 0.055 ]

The estimate of the root is;


0 + 0.11
𝑥𝑥𝑟𝑟 = = 0.055
2
𝑓𝑓(𝑥𝑥𝑟𝑟 ) = 𝑓𝑓 (0.055) = (0.055)3 − 0.165(0.055)2 + 3.993 × 10−4 = 6.655 × 10−5

𝑓𝑓(𝑥𝑥𝑙𝑙 )𝑓𝑓(𝑥𝑥𝑟𝑟 ) = 𝑓𝑓(0)𝑓𝑓(0.055) = 3.993 × 10−4 (6.655 × 10−4 ) = 2.6573 × 10−8 [ > 0 ]

Hence the root is then bracketed between 0.055 and 0.11.

At this point, the relative approximate error 𝜀𝜀𝑎𝑎 cannot be calculated as we do not have a previous
approximation.

2nd iteration.

[ 𝒙𝒙𝒍𝒍 = 0.055 ; 𝒙𝒙𝒖𝒖 = 0.11; 𝒙𝒙𝒓𝒓 = 0.0825 ]


0.055 + 0.11
𝑥𝑥𝑟𝑟 = = 0.0825
2
𝑓𝑓(𝑥𝑥𝑟𝑟 ) = 𝑓𝑓 (0.0825) = (0.055)3 − 0.165(0.0825)2 + 3.993 × 10−4 = −1.622 × 10−5

𝑓𝑓(𝑥𝑥𝑙𝑙 )𝑓𝑓(𝑥𝑥𝑟𝑟 ) = 𝑓𝑓(0.055)𝑓𝑓(0.0825) = 6.655 × 10−5 (−1.622 × 10−4 ) = −1.0794 × 10−7 [ < 0 ]

Hence the root is then bracketed between 0.055 and 0.0825.

The relative approximate error;

𝑥𝑥𝑟𝑟𝑛𝑛𝑛𝑛𝑛𝑛 − 𝑥𝑥𝑟𝑟𝑜𝑜𝑜𝑜𝑜𝑜 0.0825 − 0.055


𝜀𝜀𝑎𝑎 = � 𝑛𝑛𝑛𝑛𝑛𝑛 � 100% = � � 100 = 33.33%
𝑥𝑥𝑟𝑟 0.0825

3rd iteration.

[ 𝒙𝒙𝒍𝒍 = 0.055 ; 𝒙𝒙𝒖𝒖 = 0.0825; 𝒙𝒙𝒓𝒓 = 0.06875 ]

NW | Mac-July 2020
CES513 | Topic 1

0.055 + 0.0825
𝑥𝑥𝑟𝑟 = = 0.06875
2
𝑓𝑓(𝑥𝑥𝑟𝑟 ) = 𝑓𝑓 (0.06875) = (0.06875)3 − 0.165(0.06875)2 + 3.993 × 10−4 = −5.563 × 10−5

𝑓𝑓(𝑥𝑥𝑙𝑙 )𝑓𝑓(𝑥𝑥𝑟𝑟 ) = 𝑓𝑓(0.055)𝑓𝑓(0.06875) = 6.655 × 10−5 (−5.563 × 10−5 ) = −3.702 × 10−9 [ < 0 ]

Hence the root is then bracketed between 0.055 and 0.06875.

The relative approximate error;

𝑥𝑥𝑟𝑟𝑛𝑛𝑛𝑛𝑛𝑛 − 𝑥𝑥𝑟𝑟𝑜𝑜𝑜𝑜𝑜𝑜 0.06875 − 0.0825


𝜀𝜀𝑎𝑎 = � 𝑛𝑛𝑛𝑛𝑛𝑛 � 100% = � � 100 = 20%
𝑥𝑥𝑟𝑟 0.06875

Solution (b).

Eq. (1-5) can be employed to determine the error criterion that ensures a result is correct to at least
two significant figures:

𝜀𝜀𝑠𝑠 = (0.5 × 102−2 )% = 0.5%


Thus, the iteration will be carried out until 𝜀𝜀𝑎𝑎 falls below this level.

Iteration 𝑥𝑥𝑙𝑙 𝑥𝑥𝑢𝑢 𝑥𝑥𝑟𝑟 𝜀𝜀𝑎𝑎 % 𝑓𝑓 (𝑥𝑥𝑟𝑟 )


1 0.00000 0.11 0.055 ---------- 6.655 x 10-5
2 0.055 0.11 0.0825 33.33 -1.622 x 10-4
3 0.055 0.0825 0.06875 20.00 -5.563 x 10-5
4 0.055 0.06875 0.06188 11.11 4.484 x 10-6
5 0.06188 0.06875 0.06531 5.263 -2.593 x 10-5
6 0.06188 0.06531 0.06359 2.702 -1.0804 x 10-5
7 0.06188 0.06359 0.06273 1.370 -3.176 x 10-6
8 0.06188 0.06273 0.06230 0.6897 6.497 x 10-7
9 0.0623 0.06273 0.06252 0.3436 -1.265 x 10-5

Advantages of bisection method

1. The bisection method is always convergent. Since the method brackets the root, the method
is guaranteed to converge.
2. As iterations are conducted, the interval gets halved. So one can guarantee the error in the
solution of the equation.

Drawbacks of bisection method

1. The convergence of the bisection method is slow as it is simply based on halving the interval.
2. If one of the initial guesses is closer to the root, it will take larger number of iterations to reach
the root.
3. If a function of 𝑓𝑓(𝑥𝑥) that just touches the x-axis as in Figure 8, where 𝑓𝑓(𝑥𝑥 ) = 𝑥𝑥 2 = 0, the
lower and upper bound (𝑥𝑥𝑙𝑙 and 𝑥𝑥𝑢𝑢 ) would be impossible to guess.

NW | Mac-July 2020
CES513 | Topic 1

Figure 8 - The equation 𝑓𝑓(𝑥𝑥) = 𝑥𝑥 2 = 0 has a single root at 𝑥𝑥 = 0 that cannot be bracketed

4. For functions 𝑓𝑓(𝑥𝑥 ) where there is a singularity and it reverses sign at the singularity, the
bisection method may converge on the singularity. An example as in Figure 9 where,
1
𝑓𝑓(𝑥𝑥 ) =
𝑥𝑥
where 𝑥𝑥𝑙𝑙 = −2 and 𝑥𝑥𝑢𝑢 = 3 are valid initial guesses which satisfy 𝑓𝑓(𝑥𝑥𝑙𝑙 )𝑓𝑓(𝑥𝑥𝑟𝑟 ) < 0
However, the function is not continuous and the theorem for a root to exists is also not
applicable.
[*A singularity in a function is defined as a point where the function becomes infinite. For
example, for a function such as 1⁄𝑥𝑥 , the point of singularity is 0 = 𝑥𝑥 as it becomes infinite.]

1
Figure 9 – The equation 𝑓𝑓(𝑥𝑥) = 𝑥𝑥 = 0 has no root but changes sign.

Exercise 1. [Final Exam Dec 2019]

A column is subjected to end moments, M and compressive force, N at its both ends. Under the
bending moments and compressive forces, the column experiences a lateral deflection by 𝜈𝜈 and
reached its maximum central lateral deflection, 𝜈𝜈𝑚𝑚𝑚𝑚𝑚𝑚 . The governing equation of the column’s lateral
deflection is given as follows:

𝑀𝑀 𝜋𝜋 𝑁𝑁
𝜈𝜈𝑚𝑚𝑚𝑚𝑚𝑚 = 𝑠𝑠𝑠𝑠𝑠𝑠 � � − 1�
𝑁𝑁 2 𝑃𝑃𝐸𝐸

where 𝑃𝑃𝐸𝐸 is the maximum compressive force that can be applied at the column’s ends.

By using the Bisection Method, determine the value of the compressive force, N to produce 0.0236m
maximum central deflection. Given that M = 20Nm and PE = 1000N. The stopping criteria is set as 1
percent of absolute relative error. Use the lower and upper guesses of the compressive forces
between 1100N and 1400N.

NW | Mac-July 2020
CES513 | Topic 1

Answer.

The nonlinear equation needs to be solved as follows:

20 𝜋𝜋 𝑁𝑁
𝜈𝜈𝑚𝑚𝑚𝑚𝑚𝑚 = 0.0236 = 𝑠𝑠𝑠𝑠𝑠𝑠 � � − 1�
𝑁𝑁 2 1000

20 𝜋𝜋 𝑥𝑥
𝑓𝑓(𝑥𝑥 ) = 0.0236 − 𝑠𝑠𝑠𝑠𝑠𝑠 � � − 1� = 0
𝑥𝑥 2 1000

The calculation details are as in the table below:

Iterations xl xu xr f(xl) f(xr) f(xr)f(xr) ɛa


1 1100 1400 1250 0.0029 0.00097 2.8387E-06 (+ve) -
2 1250 1400 1325 0.0010 -0.00055 -5.3076E-07 (-ve) 5.66
3 1250 1325 1287.5 0.0010 0.00027 2.6095E-07 (+ve) 2.91
4 1287.5 1325 1306.2 0.0003 -0.00012 -3.3280E-08 (-ve) 1.44
5 1287.5 1306.2 1296.8 0.0003 0.00008 2.0305E-08 (+ve) 0.72

Thus, the value of applied compressive force, N that could cause a maximum deflection of 0.0236m
is 1269.8N. The calculation was terminated by considering the approximate error, 𝜀𝜀𝑎𝑎 of 0.72% which
lies below the specified error of 𝜀𝜀𝑠𝑠 = 0.5%.

NW | Mac-July 2020

You might also like