Tuesday, 9 June 2026

Mathematical Induction Made Easy

 

Understand Mathematical Induction

 Line-by-Line Breakdown of the Inductive Proof

Let's strip away the intimidating symbols and break down the algebra from Step 3 in simple language. Think of this process like a puzzle where we are swapping out large, messy pieces for smaller, cleaner ones.

Simple Example On Mathematical Induction

 

Think of Mathematical Induction as the ultimate way to knock over an infinite line of dominoes.

Instead of walking down the line and pushing every single domino over one by one (which would take forever), you only need to prove two things:

  1. The First Domino Falls: You can actually push the very first domino over.
  2. The Chain Reaction Works: If any given domino falls, it is guaranteed to knock over the next one.

If you prove both, you've proven that the entire infinite line of dominoes will fall.

The Example: The Odd Number Ladder

Let's say someone tells you a trick: "If you add up consecutive odd numbers starting from 1, the answer is always a perfect square."

Let's test it out to see if they are right:

  • Add the first 1 odd number: 1 = 1²
  • Add the first 2 odd numbers: 1 + 3 = 4 = 2²
  • Add the first 3 odd numbers: 1 + 3 + 5 = 9 = 3²
  • Add the first 4 odd numbers: 1 + 3 + 5 + 7 = 16 = 4²

It seems to work perfectly! The rule or formula for this pattern is:

1 + 3 + 5 + ... + (2n - 1) = n²

But how do we prove this works for the first 100 odd numbers? Or the first million? Or forever? This is where mathematical induction saves the day in three simple steps.

Step 1: The Base Case (The First Domino)

First, we must prove the formula works for the very first number, where n = 1.

  • Left side (just the first number): 1
  • Right side (using the formula n² where n=1): 1² = 1

Both sides match! The first domino falls.

Step 2: The Inductive Hypothesis (The "What If?")

Now, we assume the trick works for some random step in the middle of the line. Let's call this step k.

We just assume this mathematical statement is completely true:

1 + 3 + 5 + ... + (2k - 1) = k²

This is our setup. We are looking at the line of dominoes and saying, "Let's imagine domino k just fell."

Step 3: The Inductive Step (The Chain Reaction)

Now we have to prove that because domino k fell, the next domino, domino k + 1, must also fall.

If we write out the sum for k + 1 terms, it looks like this:

1 + 3 + 5 + ... + (2k - 1) + [2(k+1) - 1]

Look closely at that long string of numbers. Notice that the front part of it is exactly our Step 2 setup! Because we assumed that front part equals , we can swap it out:

= k² + [2(k+1) - 1]

Now, let's simplify the stuff inside the brackets:

= k² + [2k + 2 - 1]
= k² + 2k + 1

If you remember basic high school algebra, k² + 2k + 1 can be factored perfectly into a square:

= (k + 1)²

The Grand Conclusion

Look at what we just accomplished! By assuming the formula worked for k, we did a little algebra and showed that the next step automatically simplified to (k + 1)².

  • Because we proved it works for 1 (Step 1), it automatically triggers it to work for 2.
  • Because it works for 2, it automatically triggers it to work for 3.
  • Because it works for 3, it triggers 4... and so on, all the way to infinity.

You've just knocked down every single domino in existence using math induction!

Monday, 8 June 2026

Introduction To Mathematical Induction

 

What is Mathematical Induction?


Think of mathematical induction like knocking over a row of standing dominoes. Instead of knocking each one down individually, you only need to ensure two things:


  1. The first domino falls.

  2. If any given domino falls, it will inevitably knock over the next one.

In mathematics, this is a powerful technique used to prove that a statement, formula, or property is true for all positive integers (n = 1, 2, 3, ...).


A formal proof by induction consists of two essential steps:


  • The Base Case: Prove that the statement holds true for the very first value, usually n = 1.

  • The Inductive Step: Prove that if the statement holds true for an arbitrary integer k (this assumption is called the Inductive Hypothesis), then it must also be true for the next integer k + 1.



Two Classic Examples


Example 1: Sum of the First n Positive Integers


We want to prove the formula: 1 + 2 + 3 + ... + n = [n(n + 1)] / 2


  • Base Case (n = 1): Left Side = 1. Right Side = [1(1 + 1)] / 2 = 2 / 2 = 1. Both sides match, so the base case holds.

  • Inductive Step: Assume it works for n = k, meaning: 1 + 2 + ... + k = [k(k + 1)] / 2. Now, we must prove it works for n = k + 1. Add (k + 1) to both sides of our assumption, factor it out, and it simplifies perfectly to: [(k + 1)(k + 2)] / 2. The proof is complete.

Example 2: Divisibility


We want to prove that (n³ - n) is always divisible by 3 for any positive integer n.


  • Base Case (n = 1): 1³ - 1 = 0. Since 0 is divisible by 3 (0 = 3 x 0), the base case holds.

  • Inductive Step: Assume (k³ - k) is divisible by 3, so k³ - k = 3m. Now check for n = k + 1: (k + 1)³ - (k + 1). Expanding and rearranging gives us (k³ - k) + 3k² + 3k. Substituting our assumption gives 3m + 3k² + 3k, which factors out to 3(m + k² + k). Because the expression can be factored by 3, it is guaranteed to be divisible by 3.

Solving Problems On Differentiation Of Trigonometric Functions

 

Rules of Differentiation for Trigonometric Functions

A comprehensive guide with formulas, objective questions, and step-by-step solutions.

1. Derivative of Sine [d/dx(sin x)]

The derivative of the sine function is the cosine function.

d/dx(sin x) = cos x
Objective Question 1: Find the derivative of f(x) = sin(3x).
  • A) cos(3x)
  • B) 3cos(3x)
  • C) -3cos(3x)
  • D) 3sin(3x)
Correct Answer: B Solution:
Using the Chain Rule:
Let u = 3x, so du/dx = 3.
d/dx(sin u) = cos u * du/dx
d/dx(sin(3x)) = cos(3x) * 3 = 3cos(3x)

2. Derivative of Cosine [d/dx(cos x)]

The derivative of the cosine function is the negative sine function.

d/dx(cos x) = -sin x
Objective Question 2: Differentiate y = cos(x^2) with respect to x.
  • A) -sin(x^2)
  • B) 2x+sin(x^2)
  • C) -2x*sin(x^2)
  • D) -2x*cos(x^2)
Correct Answer: C Solution:
Apply the Chain Rule:
The derivative of the outer function cos(u) is -sin(u).
The derivative of the inner function x^2 is 2x.
Multiplying them together gives: -2x*sin(x^2).

3. Derivative of Tangent [d/dx(tan x)]

The derivative of the tangent function is the secant squared function.

d/dx(tan x) = sec^2 x
Objective Question 3: What is d/dx(5tan x)?
  • A) 5sec^2 x
  • B) sec^2(5x)
  • C) 5cot x
  • D) -5sec^2 x
Correct Answer: A Solution:
By the constant multiple rule, pull out the constant 5:
d/dx(5tan x) = 5 * d/dx(tan x) = 5sec^2 x.

4. Derivative of Cosecant [d/dx(csc x)]

The derivative of the cosecant function is the negative product of cosecant and cotangent.

d/dx(csc x) = -csc x * cot x
Objective Question 4: Find the derivative of f(x) = csc(4x).
  • A) -csc(4x)cot(4x)
  • B) 4csc(4x)cot(4x)
  • C) -4csc(4x)cot(4x)
  • D) -4sec(4x)tan(4x)
Correct Answer: C Solution:
Using the Chain Rule:
Differentiate the outer function: -csc(4x)cot(4x).
Multiply by the derivative of the inner function (4x), which is 4.
Result: -4csc(4x)cot(4x).

5. Derivative of Secant [d/dx(sec x)]

The derivative of the secant function is the product of secant and tangent.

d/dx(sec x) = sec x * tan x
Objective Question 5: Evaluate the derivative of y = x*sec x.
  • A) sec x * tan x
  • B) sec x * (1 + x*tan x)
  • C) sec x + tan x
  • D) x*sec x*tan x
Correct Answer: B Solution:
Apply the Product Rule [d/dx(uv) = u'v + uv']:
Let u = x implies u' = 1.
Let v = sec x implies v' = sec x * tan x.
dy/dx = (1)(sec x) + (x)(sec x * tan x) = sec x + x*sec x*tan x.
Factoring out sec x gives: sec x * (1 + x*tan x).

6. Derivative of Cotangent [d/dx(cot x)]

The derivative of the cotangent function is the negative cosecant squared function.

d/dx(cot x) = -csc^2 x
Objective Question 6: If y = cot x, find dy/dx at x = pi/4.
  • A) -1
  • B) -2
  • C) 1
  • D) 2
Correct Answer: B Solution:
First, find the general derivative: dy/dx = -csc^2 x.
Recall that csc x = 1/sin x. At x = pi/4, sin(pi/4) = 1/sqrt(2).
Therefore, csc(pi/4) = sqrt(2).
Squaring it gives [sqrt(2)]^2 = 2.
Substituting this back into our formula yields: -2.

Solving Calculus Problems On Integration

 

Mastering Integration

Definition, 10 Core Rules, Practice Questions, and Detailed Solutions

What is Integration?

Integration is a foundational concept in calculus that serves as the inverse operation to differentiation. While differentiation determines the rate of change at a given point, integration accumulates these values to calculate total sizes, most notably the net area bounded under a curve.

  • Indefinite Integrals: Represent families of functions and always include an arbitrary constant (C).
  • Definite Integrals: Evaluated across specific physical intervals to provide a concrete numeric value.

1. The Power Rule

Used to integrate variable bases raised to fixed numerical exponents.

∫ xn dx = (xn+1 / (n + 1)) + C  (where n ≠ -1)

Question 1.1: Find the indefinite integral: ∫ x4 dx.

  • A) 4x3 + C
  • B) (1/5)x5 + C
  • C) 5x5 + C
  • D) x5 + C
Correct Answer: B
Solution: Raise power by 1 and divide by the new exponent: (4+1=5). Result = (1/5)x5 + C.

Question 1.2: Evaluate: ∫ 1/x3 dx.

  • A) -1/(2x2) + C
  • B) 1/(4x4) + C
  • C) -3/x4 + C
  • D) log(x3) + C
Correct Answer: A
Solution: Rewrite as negative exponent: ∫ x-3 dx. Apply rule: x-2 / -2 + C = -1/(2x2) + C.

2. Constant & Constant Multiple Rule

Constants can be factored directly out of integration operations cleanly.

∫ k dx = kx + C  |  ∫ k·f(x) dx = k ∫ f(x) dx

Question 2.1: Find ∫ 7 dx.

  • A) 7 + C
  • B) 0 + C
  • C) 7x + C
  • D) 7/2 x2 + C
Correct Answer: C
Solution: The integral of any standalone constant k with respect to x is always kx + C. Thus, 7x + C.

Question 2.2: Evaluate ∫ 6x2 dx.

  • A) 2x3 + C
  • B) 18x3 + C
  • C) 6x3 + C
  • D) 3x2 + C
Correct Answer: A
Solution: Factor out 6: 6 ∫ x2 dx = 6 · (x3 / 3) = 2x3 + C.

3. Sum and Difference Rule

Integrals can be distributed cleanly across independent additive or subtractive elements.

∫ [f(x) ± g(x)] dx = ∫ f(x) dx ± ∫ g(x) dx

Question 3.1: Evaluate ∫ (3x2 + 2x) dx.

  • A) 6x + 2 + C
  • B) x3 + x2 + C
  • C) 3x3 + 2x2 + C
  • D) x3 + 2x + C
Correct Answer: B
Solution: Split terms: ∫ 3x2 dx + ∫ 2x dx = x3 + x2 + C. Result = x3 + x2 + C.

Question 3.2: Find ∫ (5 - x) dx.

  • A) 5x - (1/2)x2 + C
  • B) 5x - x + C
  • C) -1 + C
  • D) 5x - x2 + C
Correct Answer: A
Solution: Integrating independent blocks gives: ∫ 5 dx - ∫ x dx = 5x - (1/2)x2 + C.

4. The Exponential Rule

Natural exponential operations are unique as they serve as their own primary integrals.

∫ ex dx = ex + C  |  ∫ eax dx = (1/a)eax + C

Question 4.1: Evaluate ∫ 4ex dx.

  • A) ex + C
  • B) 4ex + C
  • C) 2e2x + C
  • D) 4xex-1 + C
Correct Answer: B
Solution: Pull out the constant scale factor directly: 4 ∫ ex dx = 4ex + C.

Question 4.2: Find ∫ e5x dx.

  • A) 5e5x + C
  • B) e5x + C
  • C) (1/5)e5x + C
  • D) e6x/6 + C
Correct Answer: C
Solution: Divide structural expression by the internal derivative coefficient (5): (1/5)e5x + C.

5. The Reciprocal Rule (Logarithmic Rule)

The solution when evaluating functions with a power profile of exactly -1.

∫ (1/x) dx = ln|x| + C

Question 5.1: Find the integral: ∫ 3/x dx.

  • A) -3/x2 + C
  • B) 3 ln|x| + C
  • C) ln|3x| + C
  • D) 3x0 + C
Correct Answer: B
Solution: Separate the numerator value: 3 ∫ (1/x) dx = 3 ln|x| + C.

Question 5.2: Evaluate ∫ 1/(4x) dx.

  • A) (1/4) ln|x| + C
  • B) ln|4x| + C
  • C) 4 ln|x| + C
  • D) -1/(16x2) + C
Correct Answer: A
Solution: Extract scalar fractions cleanly before processing: (1/4) ∫ (1/x) dx = (1/4) ln|x| + C.

6. Trigonometric Rules (Sine and Cosine)

Core cyclic rules tracking foundational derivatives in inverse format.

∫ sin(x) dx = -cos(x) + C  |  ∫ cos(x) dx = sin(x) + C

Question 6.1: Evaluate ∫ -2 cos(x) dx.

  • A) 2 sin(x) + C
  • B) -2 sin(x) + C
  • C) -2 cos(x) + C
  • D) 2 cos(x) + C
Correct Answer: B
Solution: The integral of cos(x) is sin(x). Multiplying by -2 yields -2 sin(x) + C.

Question 6.2: Find ∫ (x - sin(x)) dx.

  • A) (1/2)x2 - cos(x) + C
  • B) x2 + cos(x) + C
  • C) (1/2)x2 + cos(x) + C
  • D) 1 - cos(x) + C
Correct Answer: C
Solution: ∫ x dx - ∫ sin(x) dx = (1/2)x2 - (-cos(x)) + C = (1/2)x2 + cos(x) + C.

7. Advanced Trigonometric Rules (Secant Squared)

Since the derivative of tangent functions equals secant squared, integration reverses this track perfectly.

∫ sec2(x) dx = tan(x) + C

Question 7.1: Evaluate ∫ 5 sec2(x) dx.

  • A) 5 tan(x) + C
  • B) -5 tan(x) + C
  • C) 5 sec(x) + C
  • D) 5/3 sec3(x) + C
Correct Answer: A
Solution: Factor out the scale parameter: 5 ∫ sec2(x) dx = 5 tan(x) + C.

Question 7.2: Find ∫ sec2(2x) dx.

  • A) tan(2x) + C
  • B) 2 tan(2x) + C
  • C) (1/2) tan(2x) + C
  • D) sec(2x) tan(2x) + C
Correct Answer: C
Solution: Divide by the internal linear derivative coefficient (2) to scale back the transformation: (1/2) tan(2x) + C.

8. Integration by Substitution (u-Substitution)

The inverse version of the Chain Rule. Used when an expression contains both an inner function and its derivative.

∫ f(g(x))·g'(x) dx = ∫ f(u) du, where u = g(x)

Question 8.1: Evaluate ∫ 2x ex2 dx.

  • A) ex2 + C
  • B) 2ex2 + C
  • C) x2ex + C
  • D) ex + C
Correct Answer: A
Solution: Set u = x2, giving du = 2x dx. Substituting gives ∫ eu du = eu + C = ex2 + C.

Question 8.2: Find ∫ (2x + 3)5 dx.

  • A) (2x + 3)6 / 6 + C
  • B) (2x + 3)6 / 12 + C
  • C) 2(2x + 3)6 + C

Sunday, 7 June 2026

Solving Problems On Application of Differentiation

 

Applications of Differentiation: Core Concepts

Differentiation is not just an abstract algebraic exercise; it is a powerful tool used to analyze behavior, rates, and limits in the real world. Here are the three most common applications found in calculus:

  • 1. Rates of Change: Since a derivative measures how fast a dependent variable changes relative to an independent variable, it represents real-world rates. For example, if an object's position is given by a function of time, its velocity is the first derivative, and its acceleration is the second derivative.
  • 2. Turning Points (Maxima and Minima): To find where a curve reaches its highest or lowest point, we look for where the slope of the tangent line equals zero (dydx = 0). These are called stationary points.
  • 3. Optimization: This is the business and engineering application of finding turning points. It involves constructing a mathematical model to calculate maximum possible profit, minimum material waste, or optimal structural dimensions under specific constraints.

Guided Examples

Example 1 (Kinematics / Rate of Change):
The distance s (in meters) traveled by a particle in time t (in seconds) is given by the equation:
s = 2t3 - 5t + 3
Find the velocity of the particle at t = 3 seconds.

Solution:
Velocity (v) is defined as the instantaneous rate of change of distance with respect to time: v = dsdt.
1. Differentiate the equation with respect to t using the Power Rule:
v = dsdt = 6t2 - 5
2. Substitute t = 3 into the velocity derivative:
v = 6(3)2 - 5 = 6(9) - 5 = 54 - 5 = 49 m/s.
The velocity at 3 seconds is 49 m/s.

Example 2 (Stationary Points):
Find the coordinates of the turning point for the curve:
y = x2 - 4x + 7

Solution:
1. Turning points occur exclusively where the gradient/slope is zero (dydx = 0). Differentiate the function:
dydx = 2x - 4
2. Set the derivative equal to zero and isolate x:
2x - 4 = 0 → 2x = 4 → x = 2
3. Find the corresponding y value by substituting x = 2 back into the original curve equation:
y = (2)2 - 4(2) + 7 = 4 - 8 + 7 = 3.
The stationary turning point coordinates are (2, 3).


Application of Differentiation Practice Quiz

Question 1: The displacement of an object is given by s = t2 - 6t + 8. At what time t does the object momentarily come to rest (velocity = 0)?

  • A) t = 2 seconds
  • B) t = 3 seconds
  • C) t = 6 seconds
  • D) t = 0 seconds
View Answer & mSolution

Correct Answer: B

Solution: Velocity is the derivative of displacement: v = dsdt = 2t - 6.
The term "at rest" means velocity equals 0. Set the expression to 0:
2t - 6 = 0 → 2t = 6 → t = 3 seconds.

Question 2: Find the x-coordinate of the maximum turning point for the curve y = -x2 + 8x - 12.

  • A) x = 4
  • B) x = -4
  • C) x = 8
  • D) x = 2
View Answer & Solution

Correct Answer: A

Solution: Differentiate the function to find the gradient expression:
dydx = -2x + 8
Set the derivative to zero for a stationary point:
-2x + 8 = 0 → 2x = 8 → x = 4.

Question 3: A profit function for selling x items is given by P(x) = 400x - 2x2. How many items must be sold to maximize profit?

  • A) 400 items
  • B) 200 items
  • C) 100 items
  • D) 50 items
View Answer & Solution

Correct Answer: C

Solution: To find maximum profit, find the marginal profit derivative P'(x) and set it to 0:
P'(x) = 400 - 4x
Set equal to zero:
400 - 4x = 0 → 4x = 400 → x = 100 items.

Question 4: The velocity of a moving body is given by v = 3t2 + 2t. Find its acceleration at t = 2 seconds.

  • A) 14 m/s2
  • B) 16 m/s2
  • C) 12 m/s2
  • D) 8 m/s2
View Answer & Solution

Correct Answer: A

Solution: Acceleration (a) is the derivative of velocity over time: a = dvdt.
Differentiate the velocity function:
a = 6t + 2
Substitute t = 2:
a = 6(2) + 2 = 12 + 2 = 14 m/s2.

Question 5: If a curve is given by y = x3 - 3x, what are the x-values of its two stationary points?

  • A) x = 0 and x = 3
  • B) x = 1 and x = -1
  • C) x = 0 and x = 1
  • D) x = 3 and x = -3
View Answer & Solution

Correct Answer: B

Solution: Differentiate the cubic equation to find its slope formula:
dydx = 3x2 - 3
Set the expression equal to 0:
3x2 - 3 = 0 → 3x2 = 3 → x2 = 1
Taking the square root gives: x = 1 and x = -1.

Solving Calculus Problems On Implicit Differentiation

 

Understanding Implicit Differentiation

In calculus, we usually work with explicit functions, where one variable is isolated directly on one side of the equation—for example, y = x2 + 3x. Differentiating these is straightforward because y is stated explicitly in terms of x.

However, many equations mix x and y together in a way that is difficult or impossible to solve directly for y. These are called implicit functions (such as x2 + y2 = 25 or x3 + y3 = 3xy).

To find dydx for these expressions, we use Implicit Differentiation. The process follows three core steps:

  1. Differentiate both sides of the equation with respect to x.
  2. Treat y as a function of x. This means every time you differentiate a term containing y, you must apply the Chain Rule and multiply that term by dydx.
  3. Use algebra to isolate and solve for dydx.

Guided Example

Problem: Find dydx for the curve x2 + y2 = 36.

Step 1: Differentiate term by term with respect to x:
The derivative of x2 is 2x.
The derivative of y2 (using the Chain Rule) is 2y · dydx.
The derivative of the constant 36 is 0.

Putting it together:
2x + 2y(dydx) = 0

Step 2: Isolate the dydx term:
Subtract 2x from both sides:
2y(dydx) = -2x

Divide both sides by 2y:
dydx = -2x2y

Simplifying gives the final result:
dydx = -xy


Implicit Differentiation Practice Quiz

Question 1: Find dydx if y3 - x3 = 8.

  • A) x2y2
  • B) -x2y2
  • C) y2x2
  • D) 3x2
View Answer & Solution

Correct Answer: A

Solution:
1. Differentiate both sides with respect to x:
3y2(dydx) - 3x2 = 0
2. Move the x term to the right side:
3y2(dydx) = 3x2
3. Divide by 3y2 to isolate the derivative:
dydx = 3x23y2 = x2y2

Question 2: Find the derivative dydx for the curve expression xy = 4.

  • A) 1x
  • B) -yx
  • C) -xy
  • D) 0
View Answer & Solution

Correct Answer: B

Solution:
1. Use the Product Rule on the term xy: (first · derivative of second) + (second · derivative of first).
x(dydx) + y(1) = 0
2. Isolate the derivative term:
x(dydx) = -y
3. Divide by x:
dydx = -yx

Question 3: Differentiate implicitly to find dydx given x + sin(y) = 1.

  • A) -cos(y)
  • B) 1cos(y)
  • C) -1cos(y)
  • D) -sin(y)
View Answer & Solution

Correct Answer: C

Solution:
1. Differentiate term by term with respect to x:
1 + cos(y) · dydx = 0
2. Move 1 over to the right hand side:
cos(y) · dydx = -1
3. Divide by cos(y) to finish solving:
dydx = -1cos(y)

Question 4: Find dydx if x2 + 3xy = 10.

  • A) -2x + 3y3x
  • B) -2x3
  • C) 2x + 3y3x
  • D) -2x + 33x
View Answer & Solution

Correct Answer: A

Solution:
1. Differentiate term by term. Use the product rule for the 3xy part:
2x + [3x(dydx) + 3y(1)] = 0
2x + 3x(dydx) + 3y = 0
2. Keep the dydx term on the left side, and move the rest to the right:
3x(dydx) = -2x - 3y
3. Factor out the negative sign on the right side and divide by 3x:
3x(dydx) = -(2x + 3y)
dydx = -2x + 3y3x

Question 5: Find the slope of the tangent line dydx for the curve y2 - x = 5.

  • A) 2y
  • B) 12y
  • C) -12y
  • D) 1
View Answer & Solution

Correct Answer: B

Solution:
1. Differentiate implicitly with respect to x:
2y(dydx) - 1 = 0
2. Move the constant -1 to the right side:
2y(dydx) = 1
3. Divide by 2y to isolate the derivative expression:
dydx = 12y

Solving Calculus Problems On Differentiation

 

What is Differentiation?

Differentiation is a fundamental operation in calculus that measures the rate at which a function changes relative to its input variable. Geometrically, finding the derivative of a function at a specific point gives the slope of the tangent line to the curve at that exact point.

If y = f(x), the derivative is denoted as dydx or f'(x), and it represents the instantaneous rate of change of y with respect to x.


The First 10 Rules of Differentiation

  1. The Constant Rule: The derivative of any constant is zero.
    ddx(c) = 0
  2. The Power Rule: Bring the power to the front and subtract one.
    ddx(xn) = n · xn-1
  3. The Constant Multiple Rule: Factor out the constant before differentiating.
    ddx(c · f(x)) = c · f'(x)
  4. The Sum Rule: Differentiate terms separately.
    ddx(f(x) + g(x)) = f'(x) + g'(x)
  5. The Difference Rule: Differentiate terms separately.
    ddx(f(x) - g(x)) = f'(x) - g'(x)
  6. The Product Rule: First times derivative of the second, plus second times derivative of the first.
    ddx(f(x) · g(x)) = f(x)g'(x) + g(x)f'(x)
  7. The Quotient Rule: "Low d-high minus high d-low, over the square of what's below."
    ddx( f(x)g(x) ) = g(x)f'(x) - f(x)g'(x)[g(x)]2
  8. The Chain Rule: Derivative of the outer function multiplied by the derivative of the inner function.
    ddx(f(g(x))) = f'(g(x)) · g'(x)
  9. The Exponential Rule (Base e): The natural exponential function is its own derivative.
    ddx(ex) = ex
  10. The Logarithmic Rule (Natural Log): The derivative of ln(x) is 1/x.
    ddx(ln(x)) = 1x

Practice Quiz (10 Objective Questions)

Question 1 (Constant Rule): What is the derivative of f(x) = 157?

  • A) 157
  • B) 1
  • C) 0
  • D) 157x
View Answer & Solution

Correct Answer: C

Solution: According to the Constant Rule, the rate of change of any constant value is always zero because it does not vary with x. Therefore, ddx(157) = 0.

Question 2 (Power Rule): Find the derivative of f(x) = x7.

  • A) 7x7
  • B) 7x6
  • C) 6x7
  • D) x88
View Answer & Solution

Correct Answer: B

Solution: Apply the Power Rule, ddx(xn) = n · xn-1. Here, n = 7. Bringing the 7 to the front and subtracting 1 from the power gives 7x7-1 = 7x6.

Question 3 (Constant Multiple Rule): Differentiate f(x) = 4x5.

  • A) 20x4
  • B) 4x4
  • C) 20x5
  • D) 5x4
View Answer & Solution

Correct Answer: A

Solution: Keep the constant coefficient 4 aside and differentiate x5 using the Power Rule (5x4). Then multiply them back together: 4 · (5x4) = 20x4.

Question 4 (Sum Rule): Find dydx if y = x3 + x2.

  • A) 5x4
  • B) 3x2 + x
  • C) 3x2 + 2x
  • D) 6x
View Answer & Solution

Correct Answer: C

Solution: The Sum Rule states you can differentiate each term independently. The derivative of x3 is 3x2 and the derivative of x2 is 2x. Adding them together yields 3x2 + 2x.

Question 5 (Difference Rule): Find the derivative of f(x) = 6x2 - 2x.

  • A) 12x - 2
  • B) 12x
  • C) 6x - 2
  • D) 12x2 - 2
View Answer & Solution

Correct Answer: A

Solution: Differentiate each term independently across the subtraction sign. ddx(6x2) = 12x and ddx(2x) = 2. This leaves us with 12x - 2.

Question 6 (Product Rule): Differentiate y = x2 · ex.

  • A) 2x · ex
  • B) x2 · ex + 2x · ex
  • C) x2 + ex
  • D) 2x2 · ex
View Answer & Solution

Correct Answer: B

Solution: Let f(x) = x2 → f'(x) = 2x, and g(x) = ex → g'(x) = ex. Applying the Product Rule f(x)g'(x) + g(x)f'(x), we obtain (x2)(ex) + (ex)(2x), which is x2ex + 2xex.

Question 7 (Quotient Rule): Find the derivative of f(x) = ln(x) ⁄ x.

  • A) 1 ⁄ x2
  • B) (1 - ln(x)) ⁄ x
  • C) (1 - ln(x)) ⁄ x2
  • D) (ln(x) - 1) ⁄ x2
View Answer & Solution

Correct Answer: C

Solution: Let the top function be u = ln(x) → u' = 1/x and the bottom function be v = x → v' = 1.
Applying the Quotient Rule (vu' - uv') / v2 gives:
[x(1/x) - ln(x)(1)] ⁄ x2 = (1 - ln(x)) ⁄ x2.

Question 8 (Chain Rule): Differentiate f(x) = (2x + 3)4.

  • A) 4(2x + 3)3
  • B) 8(2x + 3)3
  • C) 8(2x + 3)4
  • D) 2(2x + 3)3
View Answer & Solution

Correct Answer: B

Solution: Differentiate the outside power expression first, leaving the inside expression intact: 4(2x+3)3. Then multiply by the derivative of the inside expression, ddx(2x+3) = 2. This results in 4(2x+3)3 · 2 = 8(2x+3)3.

Question 9 (Exponential Rule): Find the derivative of f(x) = e5x.

  • A) e5x
  • B) 5ex
  • C) 5e5x
  • D) (1/5)e5x
View Answer & Solution

Correct Answer: C

Solution: The derivative of eu is eu · u'. Here, u = 5x and its derivative is 5. Therefore, the overall derivative is e5x · 5 = 5e5x.

Question 10 (Logarithmic Rule): Find the derivative of f(x) = ln(4x).

  • A) 1 ⁄ x
  • B) 1 ⁄ 4x
  • C) 4 ⁄ x
  • D) 4ln(x)
View Answer & Solution

Correct Answer: A

Solution: Using the chain rule version of the log rule: ddx(ln(u)) = (1/u) · u'. Substituting u = 4x and u' = 4, we get (1/4x) · 4 = 4/4x = 1/x.

Solving Problems On Linear Graphs

 

Use the graph below to answer the following questions 


1. What is the y-intercept of the straight line shown in the graph?
  • A) (1, 0)
  • B) (0, 1)
  • C) (0, -1)
  • D) (-0.5, 0)
Correct Answer: B) (0, 1)
Solution: The y-intercept is the point where the line crosses the vertical y-axis (where x = 0). Looking closely at the graph, the line crosses the y-axis exactly at 1. The graph explicitly labels this coordinate as (0, 1).
2. What is the slope (gradient) of the line represented in the graph?
  • A) 1
  • B) -2
  • C) 2
  • D) 1/2
Correct Answer: C) 2
Solution: To find the slope (m), pick any two points marked with an "X" on the graph. For example, using (0, 1) and (1, 3):
m = (y₂ - y₁) / (x₂ - x₁)
m = (3 - 1) / (1 - 0) = 2 / 1 = 2.

Alternatively, observe that for every 1 unit you move to the right along the x-axis, the line rises by 2 units along the y-axis (Rise/Run = 2/1 = 2).
3. Which of the following equations perfectly defines the straight line in the graph?
  • A) y = x + 1
  • B) y = 2x + 1
  • C) y = 2x - 1
  • D) y = -2x + 1
Correct Answer: B) y = 2x + 1
Solution: The slope-intercept form of a linear equation is given by: y = mx + c, where m is the slope and c is the y-intercept. From the previous questions, the slope m = 2 and the y-intercept c = 1. Substituting these values into the formula yields: y = 2x + 1.
4. Based on the line's trajectory and markings in the graph, at what value of x does the line cross the horizontal x-axis?
  • A) x = -0.5
  • B) x = -1
  • C) x = 0
  • D) x = 0.5
Correct Answer: A) x = -0.5
Solution: The x-intercept occurs where y = 0. Using the equation of the line (y = 2x + 1), set y to 0 and solve for x:
0 = 2x + 1
-1 = 2x
x = -1/2 = -0.5.

Visually checking the graph confirms the blue line crosses the horizontal axis exactly halfway between 0 and -1.
5. Which of the following ordered pairs is NOT a point marked with an orange "X" on the line in the graph?
  • A) (2, 5)
  • B) (-1, -1)
  • C) (-3, -5)
  • D) (-2, -4)
Correct Answer: D) (-2, -4)
Solution: Check the options using the line's equation y = 2x + 1:
• For x = 2: y = 2(2) + 1 = 5 → (2, 5) is marked.
• For x = -1: y = 2(-1) + 1 = -1 → (-1, -1) is marked.
• For x = -3: y = 2(-3) + 1 = -5 → (-3, -5) is marked.
• For x = -2: y = 2(-2) + 1 = -3 → The marked point on the line is (-2, -3). Therefore, (-2, -4) does not lie on the line.

Solving Statistics Problems On Pie Charts

 

A pie chart (or a circle chart) is a circular statistical graphic divided into slices to illustrate numerical proportion. In a pie chart, the arc length of each slice (and consequently its central angle and area) is proportional to the quantity it represents. It is widely used in data handling to compare parts of a whole.

Essential Formulas

To solve pie chart problems accurately, use the following standard formulas:

1. Finding the Sector Angle (in Degrees):
Angle of Sector = Value of ComponentTotal Value × 360°
2. Finding the Percentage Share:
Percentage (%) = Value of ComponentTotal Value × 100%
3. Finding Percentage from Sector Angle:
Percentage (%) = Sector Angle360° × 100%
4. Finding Actual Value from Sector Angle:
Value of Component = Sector Angle360° × Total Value

Answer the following 10 practice questions based on standard JAMB evaluation metrics.

Question 1: In a pie chart representing the expenditure of a student, the total amount spent was $18,000. If the sector for books has an angle of 60°, how much was spent on books?

  • A. $2,000
  • B. $3,000
  • C. $4,500
  • D. $6,000
View Answer & Solution
Correct Answer: B ($3,000)

Explanation: Fraction of the circle = 60360 = 16.
Amount spent on books = 16 × $18,000 = $3,000.

Question 2: The grades of a group of students in a test are represented on a pie chart. If the sector angles for grades A, B, and C are 90°, 120°, and 100° respectively, and the rest obtained grade D, what is the sector angle for grade D?

  • A. 40°
  • B. 50°
  • C. 60°
  • D. 70°
View Answer & Solution
Correct Answer: B (50°)

Explanation: Total sum of angles in a circle is 360°.
90° + 120° + 100° + D = 360° ⇒ 310° + D = 360° ⇒ D = 50°.

Question 3: A pie chart shows the distribution of crops on a farm. The sector angle for Cocoa is 144°. What percentage of the total farm produce is Cocoa?

  • A. 25%
  • B. 36%
  • C. 40%
  • D. 44%
View Answer & Solution
Correct Answer: C (40%)

Explanation: Percentage = (144360) × 100% = 0.4 × 100% = 40%.

Question 4: The distribution of 720 students in a school according to their favorite sports is represented on a pie chart. If the sector angle for Football is 105°, how many students prefer Football?

  • A. 105 students
  • B. 150 students
  • C. 210 students
  • D. 315 students
View Answer & Solution
Correct Answer: C (210 students)

Explanation: Number of students = (105360) × 720.
Since 720 ÷ 360 = 2, it simplifies to: 105 × 2 = 210 students.

Question 5: A budget distribution pie chart allocates 160° for Salaries and 80° for Infrastructure. If the amount spent on Infrastructure is $4,000,000, how much is spent on Salaries?

  • A. $2,000,000
  • B. $6,000,000
  • C. $8,000,000
  • D. $12,000,000
View Answer & Solution
Correct Answer: C ($8,000,000)

Explanation: The angle for Salaries (160°) is exactly double the angle for Infrastructure (80°). Therefore, the budget scales proportionally: 2 × $4,000,000 = $8,000,000.

Question 6: A pie chart is used to show the population of four villages A, B, C, and D. The ratio of their populations is 2:3:4:3 respectively. What is the sector angle representing village C?

  • A. 60°
  • B. 90°
  • C. 120°
  • D. 140°
View Answer & Solution
Correct Answer: C (120°)

Explanation: Total ratio parts = 2 + 3 + 4 + 3 = 12. Village C's fraction = 412 = 13.
Sector angle = 13 × 360° = 120°.

Question 7: The transport choices of employees in a company are shown on a pie chart. If 15% of employees walk to work, what is the size of the sector angle that represents this group?

  • A. 15°
  • B. 36°
  • C. 54°
  • D. 60°
View Answer & Solution
Correct Answer: C (54°)

Explanation: Angle = 15% of 360° = (15100) × 360 = 54°.

Question 8: In a pie chart, a sector representing 24 items has an angle of 72°. Find the total number of items represented by the entire pie chart.

  • A. 120 items
  • B. 144 items
  • C. 180 items
  • D. 240 items
View Answer & Solution
Correct Answer: A (120 items)

Explanation: Fraction of the chart = 72360 = 15.
If 15 of the total = 24 items, then Total = 24 × 5 = 120 items.

Question 9: A monthly family income is spent as follows: Food (135°), Rent (90°), Education (), and Savings (60°). If the family saves $15,000 monthly, what is the angle allocated for Education?

  • A. 45°
  • B. 75°
  • C. 80°
  • D. 90°
View Answer & Solution
Correct Answer: B (75°)

Explanation: The total degrees must equal 360°.
135° + 90° + x° + 60° = 360° ⇒ 285° + x° = 360° ⇒ x = 75°. (The money figure is extra context).

Question 10: If a pie chart sector with an angle of 45° represents a frequency of 15, what is the frequency represented by a sector with an angle of 120°?

  • A. 30
  • B. 40
  • C. 45
  • D. 60
View Answer & Solution
Correct Answer: B (40)

Explanation: Frequency per degree = 1545 = 13.
Frequency for a 120° sector = 120 × 13 = 40.

Frequency Distribution Table Quiz

Section 1: Basic Reading and Interpretation

Scenario: A local library tracked the number of books read by 30 students during a school break. The data is organized in the frequency table below:

Books Read Number of Students (Frequency)
0 – 25
3 – 512
6 – 88
9 – 114
12 – 141

1. What is the class width (size) of each interval in this table?

Solution: Count the integers included in the range (e.g., 0, 1, 2 gives a total width of 3).

2. Which class interval is the modal class?

Solution: The modal class has the highest frequency. The interval 3 – 5 has the highest frequency (12).

3. How many students read 6 or more books?

Solution: Add frequencies for 6–8, 9–11, and 12–14 intervals: 8 + 4 + 1 = 13.

4. What percentage of the total students read between 3 and 5 books?

Solution: (12 students / 30 total) * 100 = 40%.

Section 2: Calculations and Mean from Grouped Data

Scenario: The table below shows the daily high temperatures (in °C) recorded over a 20-day period.

Temperature Range (°C) Frequency (f)
20 – 243
25 – 297
30 – 348
35 – 392

5. What is the midpoint (x) for the 30 – 34 class interval?

Solution: Midpoint = (Lower limit + Upper limit) / 2 = (30 + 34) / 2 = 32.

6. Calculate the estimated mean temperature for this 20-day period.

Solution: Sum of (f * midpoints) = (3*22) + (7*27) + (8*32) + (2*37) = 66 + 189 + 256 + 74 = 585. Mean = 585 / 20 = 29.25°C.

7. What is the cumulative frequency up to the 30 – 34 temperature range?

Solution: Add the frequencies up to that class: 3 + 7 + 8 = 18.

Section 3: Cumulative Frequency & Advanced Concepts

Scenario: An electronics store recorded the lifetimes (in hundreds of hours) of 50 electronic components.

Lifetime (Hundreds of Hours) Frequency Cumulative Frequency
0 – 944
10 – 191115
20 – 291833
30 – 391245
40 – 49550

8. What are the exact class boundaries for the interval 10 – 19?

Solution: Subtract 0.5 from the lower limit and add 0.5 to the upper limit to bridge the data gaps: 9.5 – 19.5.

9. In which class interval does the median value lie?

Solution: Median index position is 50 / 2 = 25. Looking at cumulative frequency, the 25th position lands inside the 20 – 29 group (which spans from items 16 to 33).

10. If a component is selected at random, what is the probability that its lifetime is less than 30 (hundred hours)?

Solution: "Less than 30" includes intervals 0-9, 10-19, and 20-29. Their combined cumulative frequency total is 33. Probability = 33 / 50.

Quiz Complete!