In a real or decimal number, the digits used to express the number are called significant digits. Here are the criteria for determining significant digits:
Criteria for Significant Digits:
Q- Find out the number of significant digit and write the significant digits for the
following
numbers:
3696, 3060, 3900, 39.69, 39.00, 0.00390, 3.9, 6*102, 3.0069.
Most Significant Digit (MSD)
Least Significant Digit (LSD)
Scientific notation is a way to express numbers that are very large or very small in a concise and standardized format using powers of 10.
Normalization in floating point arithmetic refers to the process of representing a floating point number in a standardized form, typically in scientific notation, to ensure efficient storage and computation while preserving accuracy. It involves adjusting the significand (mantissa) and exponent to a normalized format.
Addition
Subtraction
Example:
1:
0.6546 * 105 - 0.5433 * 105 = 0.1113 * 105 (as the exponent
are same so there is no change required)
2:
0.6546 * 105 - 0.5433 * 107
First we will make the exponent same:
0.6546 * 105 = 0.006546 * 107
now perform 0.0065 * 107 - 0.5433 * 107 = - 5368 * 107
(answer)
Multiplication
Division
0.6546 * 10^5 / 0.5433 * 10^8 ----------------- 1.205 * 10^-3 = 0.1205 * 10^-2
Rounding to Three Significant Figures:
We should know What Algebraic and Transcendental Equations Are
The root of an equation is a value that, when substituted into the equation, makes the equation equal to zero. In other words, it is a solution or solutions that satisfy the equation by reducing it to zero.
For example, consider the quadratic equation:
ax^2 + bx + c = 0The roots of this equation can be found using the quadratic formula:
x = (-b ± √(b^2 - 4ac)) / 2a
In this formula, the values of a, b, and c are coefficients of the quadratic equation. The ± symbol indicates that there are usually two roots: one with the positive square root and one with the negative square root.
So, the roots of the quadratic equation are the values of x that, when substituted into the equation, make it equal to zero.
Steps involved in Bisection Method
Example: 1
Example: 2
Example 1:
Steps in Secant method:
Example:
f(x) = x3 - 5x + 1
Finding initial guess:
f(0) = 1
f(1) = -3
hence \(x_0\) = 0 and \(x_1\) = 1
and f(\(x_0\)) = 1, f(\(x_1\)) = -3
Q- Find the real root of \(x^4 - x - 10 = 0\) by Newton Raphson Method.