ONLINE MATHEMATICS TUTORIALS
Wednesday, 10 June 2026
Organic Chemistry Functional Gtoups
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.
- What it means: This is simply a long list of consecutive odd numbers written out horizontally.
- The front half,
1 + 3 + 5 + ... + (2k - 1), is the collection of all the odd numbers up to a random stopping point in line called k. - The part wrapped in square brackets,
[2(k+1) - 1], is just the very next odd number standing right behind it.
- What it means: This is where the magic substitution happens. Remember our assumption in Step 2? We decided that adding up everything up to position k is equal to k².
- Because we assume that rule holds true, we sweep that whole bulky front train of numbers off the table and drop down a clean
k²in its place. - The extra odd number at the tail end stays right where it is, waiting for its turn to be simplified.
- What it means: Now we focus completely on breaking down the messy stuff trapped inside the square brackets.
- We look at
2(k+1)and distribute the multiplier:2timeskgives us2k, and2times1gives us2. - The minus
1simply sits quietly at the end of the line.
- What it means: This is simple elementary cleanup. Inside the brackets, we combine the normal numbers:
2 minus 1equals1. - We discard the square brackets entirely because they aren't needed anymore, leaving us with a beautiful, clean quadratic expression:
k² + 2k + 1.
- What it means: This is our grand finale match. If you recall basic algebra factorization, the expression
k² + 2k + 1splits perfectly into two identical pieces:(k + 1)(k + 1). We write this cleanly as(k + 1)². - Why this is a total win: Our initial goal was to see if adding up
(k+1)odd numbers would give us that number of items squared. By letting the logic flow naturally, we proved it perfectly!
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:
- The First Domino Falls: You can actually push the very first domino over.
- 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:
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.
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.
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:
This is our setup. We are looking at the line of dominoes and saying, "Let's imagine domino k just fell."
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:
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 k², we can swap it out:
Now, let's simplify the stuff inside the brackets:
If you remember basic high school algebra, k² + 2k + 1 can be factored perfectly into a square:
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:
- The first domino falls.
- 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.
- A) cos(3x)
- B) 3cos(3x)
- C) -3cos(3x)
- D) 3sin(3x)
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.
- A) -sin(x^2)
- B) 2x+sin(x^2)
- C) -2x*sin(x^2)
- D) -2x*cos(x^2)
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.
- A) 5sec^2 x
- B) sec^2(5x)
- C) 5cot x
- D) -5sec^2 x
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.
- A) -csc(4x)cot(4x)
- B) 4csc(4x)cot(4x)
- C) -4csc(4x)cot(4x)
- D) -4sec(4x)tan(4x)
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.
- A) sec x * tan x
- B) sec x * (1 + x*tan x)
- C) sec x + tan x
- D) x*sec x*tan x
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.
- A) -1
- B) -2
- C) 1
- D) 2
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.
Question 1.1: Find the indefinite integral: ∫ x4 dx.
- A) 4x3 + C
- B) (1/5)x5 + C
- C) 5x5 + C
- D) 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
2. Constant & Constant Multiple Rule
Constants can be factored directly out of integration operations cleanly.
Question 2.1: Find ∫ 7 dx.
- A) 7 + C
- B) 0 + C
- C) 7x + C
- D) 7/2 x2 + C
Question 2.2: Evaluate ∫ 6x2 dx.
- A) 2x3 + C
- B) 18x3 + C
- C) 6x3 + C
- D) 3x2 + C
3. Sum and Difference Rule
Integrals can be distributed cleanly across independent additive or subtractive elements.
Question 3.1: Evaluate ∫ (3x2 + 2x) dx.
- A) 6x + 2 + C
- B) x3 + x2 + C
- C) 3x3 + 2x2 + C
- D) x3 + 2x + 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
4. The Exponential Rule
Natural exponential operations are unique as they serve as their own primary integrals.
Question 4.1: Evaluate ∫ 4ex dx.
- A) ex + C
- B) 4ex + C
- C) 2e2x + C
- D) 4xex-1 + C
Question 4.2: Find ∫ e5x dx.
- A) 5e5x + C
- B) e5x + C
- C) (1/5)e5x + C
- D) e6x/6 + C
5. The Reciprocal Rule (Logarithmic Rule)
The solution when evaluating functions with a power profile of exactly -1.
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
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
6. Trigonometric Rules (Sine and Cosine)
Core cyclic rules tracking foundational derivatives in inverse format.
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
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
7. Advanced Trigonometric Rules (Secant Squared)
Since the derivative of tangent functions equals secant squared, integration reverses this track perfectly.
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
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
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.
Question 8.1: Evaluate ∫ 2x ex2 dx.
- A) ex2 + C
- B) 2ex2 + C
- C) x2ex + C
- D) ex + 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 (dy⁄dx = 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 = ds⁄dt.
1. Differentiate the equation with respect to t using the Power Rule:
v = ds⁄dt = 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 (dy⁄dx = 0). Differentiate the function:
dy⁄dx = 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 = ds⁄dt = 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:
dy⁄dx = -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 = dv⁄dt.
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:
dy⁄dx = 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.