Q1. Determine whether each of the following relations are reflexive, symmetric and transitive:
R in the set A = {1, 2, 3, ..., 14} defined by R = {(x, y) : 3x − y = 0}
Solution
R = {(x, y) : 3x − y = 0} = {(1,3), (2,6), (3,9), (4,12)}
Reflexive: (1,1) ∉ R since 3(1) − 1 = 2 ≠ 0. ✗ Not reflexive.
Symmetric: (1,3) ∈ R but (3,1) ∉ R since 3(3) − 1 = 8 ≠ 0. ✗ Not symmetric.
Transitive: If (x,y) ∈ R and (y,z) ∈ R, then 3x = y and 3y = z, so z = 9x. For (x,z) in R we need z = 3x, but z = 9x ≠ 3x. ✗ Not transitive.
Q2. Show that the function f : R → R defined by f(x) = 3x + 7 is a one-one function.
Solution
Let f(x₁) = f(x₂). Then:
3x₁ + 7 = 3x₂ + 7 ⇒ 3x₁ = 3x₂ ⇒ x₁ = x₂
Since f(x₁) = f(x₂) implies x₁ = x₂, f is one-one. ✓
Q3. Prove that the function f : N → N defined by f(n) = n² is one-one but not onto.
Solution
One-one: Let f(n₁) = f(n₂), then n₁² = n₂². Since n₁, n₂ ∈ N (positive), n₁ = n₂. ✓
Not onto: Take m = 2 ∈ N. We need n² = 2, so n = √2 ∉ N. Since no natural number maps to 2, f is not onto. ✗
Q4. Show that the Binary operation * on N defined by a * b = LCM(a, b) is commutative and associative. Find the identity element.
Solution
Commutative: a * b = LCM(a, b) = LCM(b, a) = b * a. ✓
Associative: (a * b) * c = LCM(LCM(a,b), c) = LCM(a, LCM(b,c)) = a * (b * c). ✓
Identity: We need a * e = a, i.e., LCM(a, e) = a for all a. This holds when e = 1. Identity element is 1.
Q5. Let f : R → R be defined as f(x) = x³. Show that f is a bijection.
Solution
One-one: Let f(x₁) = f(x₂). Then x₁³ = x₂³. Taking cube root: x₁ = x₂. ✓
Onto: For any y ∈ R, let x = yⅅ(cube root). Then f(x) = (yⅅ)³ = y. So every y has a pre-image. ✓
∴ f is a bijection.
Q6. Find gof and fog if f(x) = 8x³ and g(x) = x1/3.
Using formula 2 tan−1A = tan−1[2A/(1−A²)] where A = cos x:
= tan−1[2cos x / (1 − cos²x)]
= tan−1[2cos x / sin²x]
= tan−1[2cos x / (sin x · sin x)]
= tan−1[2/(sin x)] · [cos x/sin x] ... correcting:
= tan−1[2 cos x / sin²x] = tan−1[2/sin x · cos x/sin x]
Alternatively: 2 cos x / sin²x = 2cosx/(1−cos²x). Using 1/sinx = cosec x:
2cosx/sin²x = 2(sinx · cosx)/sin³x... Let us simplify directly:
Take log on both sides: log y = cos x · log(sin x)
Differentiate both sides:
(1/y)(dy/dx) = −sin x · log(sin x) + cos x · (cos x/sin x)
dy/dx = y [−sin x · log(sin x) + cos²x/sin x]
= (sin x)cos x [cos x · cot x − sin x · log(sin x)]
Q4. Verify that y = ex sin x satisfies the equation d²y/dx² − 2 dy/dx + 2y = 0.
Solution
y = ex sin x
dy/dx = ex sin x + ex cos x = ex(sin x + cos x)
d²y/dx² = ex(sin x + cos x) + ex(cos x − sin x) = 2ex cos x
LHS = 2ex cos x − 2ex(sin x + cos x) + 2ex sin x
= 2ex cos x − 2ex sin x − 2ex cos x + 2ex sin x = 0 ✓
Q5. Find the local maxima and minima of f(x) = x³ − 3x + 2.
Solution
f'(x) = 3x² − 3 = 3(x² − 1) = 3(x−1)(x+1)
f'(x) = 0 ⇒ x = 1 or x = −1
f''(x) = 6x
f''(1) = 6 > 0 ⇒ Local minimum at x = 1, f(1) = 0
f''(−1) = −6 < 0 ⇒ Local maximum at x = −1, f(−1) = 4
Q6. A stone is dropped into a quiet lake and ripples move in a circle. Find the rate of change of the area with respect to the radius when the radius is 5 cm.
Solution
A = πr²
dA/dr = 2πr
At r = 5: dA/dr = 2π(5) = 10π cm²/cm
Chapter 7: Integrals
Key Integration Formulas:
• ∫ xn dx = xn+1/(n+1) + C, n ≠ −1
• ∫ 1/x dx = log|x| + C
• ∫ ex dx = ex + C
• ∫ sin x dx = −cos x + C
• ∫ cos x dx = sin x + C
• ∫ ax dx = ax/log a + C
• Integration by parts: ∫ u dv = uv − ∫ v du
Key Concepts:
• Order: Highest order derivative present
• Degree: Power of highest order derivative
• Variable Separable: Separate x and y terms
• Linear DE: dy/dx + Py = Q
Q1. Find the order and degree of: d²y/dx² + (dy/dx)³ + y = 0.
Solution
Highest order derivative = d²y/dx² (order = 2)
Power of highest order derivative = 1 (degree = 1) Order = 2, Degree = 1
Q2. Solve: dy/dx = (1 + y²)/(1 + x²)
Solution
dy/(1 + y²) = dx/(1 + x²)
Integrating both sides:
tan−1y = tan−1x + C
General Solution: tan−1y − tan−1x = C
Q3. Solve: dy/dx + y = ex
Solution
This is a linear differential equation of the form dy/dx + Py = Q where P = 1, Q = ex.
I.F. = e∫ 1 dx = ex
y · ex = ∫ ex · ex dx = ∫ e2x dx
y · ex = e2x/2 + C
y = ex/2 + Ce−x
Q4. Solve: x dy/dx + 2y = x² log x
Solution
dy/dx + (2/x)y = x log x (dividing by x)
P = 2/x, Q = x log x
I.F. = e∫ (2/x) dx = e2 log x = x²
y · x² = ∫ x² · x log x dx = ∫ x³ log x dx
Using integration by parts for ∫ x³ log x dx:
= log x · x&sup4;/4 − ∫ (x&sup4;/4)(1/x) dx
= x&sup4; log x/4 − x&sup4;/16
y = x² log x/4 − x²/16 + Cx−2
Q5. Solve: y dx + (x − y²) dy = 0
Solution
dx/dy = (−x + y²)/y = −x/y + y
dx/dy + x/y = y (linear in x)
I.F. = e∫ (1/y) dy = y
x · y = ∫ y · y dy = ∫ y² dy = y³/3 + C
xy = y³/3 + C
Chapter 10: Vector Algebra
Key Formulas:
• |a + b|² = |a|² + |b|² + 2a·b
• a · b = |a||b| cos θ
• a × b = |a||b| sin θ n
• [abc] = a · (b × c)
Q1. Find the unit vector in the direction of a = 2⋂⃗i + 3⋂⃗j − ⋂⃗k.
Solution
|a| = √(4 + 9 + 1) = √14
Unit vector = a/|a| = (2/√14)⋂⃗i + (3/√14)⋂⃗j − (1/√14)⋂⃗k
Q2. Find the dot product of a = ⋂⃗i + 2⋂⃗j − ⋂⃗k and b = 2⋂⃗i − ⋂⃗j + 3⋂⃗k.
Solution
a · b = (1)(2) + (2)(-1) + (-1)(3)
= 2 − 2 − 3 = −3
Q3. Find the angle between a = ⋂⃗i + ⋂⃗j − ⋂⃗k and b = ⋂⃗i − ⋂⃗j + ⋂⃗k.
Solution
a · b = 1 − 1 − 1 = −1
|a| = √3, |b| = √3
cos θ = (a · b)/(|a||b|) = −1/3 θ = cos−1(−1/3)
Q4. Find the cross product of a = 2⋂⃗i + 3⋂⃗j + ⋂⃗k and b = ⋂⃗i − ⋂⃗j + ⋂⃗k.
Key Formulas:
• Direction cosines: l² + m² + n² = 1
• Line: (x−x₁)/a = (y−y₁)/b = (z−z₁)/c
• Distance from point (x₁,y₁,z₁) to plane ax+by+cz+d=0:
d = |ax₁+by₁+cz₁+d|/√(a²+b²+c²)
Q1. Find the direction cosines of the line making equal angles with the coordinate axes.
Solution
Let l = m = n (equal angles)
l² + m² + n² = 1 ⇒ 3l² = 1
l = m = n = 1/√3
Q2. Find the equation of the line passing through (1, 2, 3) and parallel to (2, 3, 4).
Solution
(x − 1)/2 = (y − 2)/3 = (z − 3)/4
Q3. Find the shortest distance between the lines: r = ⋂⃗i + ⋂⃗j + λ(⋂⃗i + ⋂⃗j + ⋂⃗k) and r = 2⋂⃗i + ⋂⃗j + μ(⋂⃗i + ⋂⃗j − 2⋂⃗k).
Q4. Find the equation of the plane passing through (1, 1, 1) and perpendicular to x − 2y + 3z = 7.
Solution
Normal to the given plane = (1, −2, 3)
Required plane has same normal direction:
1(x−1) − 2(y−1) + 3(z−1) = 0
x − 2y + 3z − 1 + 2 − 3 = 0 x − 2y + 3z − 2 = 0
Q5. Find the distance of the point (3, −2, 1) from the plane 2x − y + 2z + 3 = 0.
Q1. Maximize Z = 3x + 4y subject to: x + y ≤ 4, x ≥ 0, y ≥ 0.
Solution
Corner points of feasible region: (0,0), (4,0), (0,4).
At (0,0): Z = 0
At (4,0): Z = 12
At (0,4): Z = 16
Maximum Z = 16 at (0, 4)
Q2. Minimize Z = 5x + 3y subject to: 3x + 5y ≥ 15, 5x + 2y ≥ 10, x, y ≥ 0.
Solution
Corner points: (0, 5), (5/3, 2), (2, 0).
At (0,5): Z = 15
At (5/3, 2): Z = 25/3 + 6 = 43/3 ≈ 14.33
At (2,0): Z = 10
Minimum Z = 10 at (2, 0)
Q3. A manufacturer produces two products A and B. Product A requires 2 hours on machine I and 1 hour on machine II. Product B requires 1 hour on machine I and 3 hours on machine II. Machine I is available for 8 hours and machine II for 9 hours. If profit on A is Rs. 5 and on B is Rs. 3 per unit, find the maximum profit.
Solution
Let x = units of A, y = units of B.
Maximize Z = 5x + 3y
Subject to: 2x + y ≤ 8, x + 3y ≤ 9, x,y ≥ 0
Corner points: (0,0), (4,0), (3,2), (0,3)
At (0,0): Z = 0
At (4,0): Z = 20
At (3,2): Z = 15 + 6 = 21
At (0,3): Z = 9
Maximum Profit = Rs. 21 at (3, 2)
Q4. Maximize Z = x + 2y subject to: x + 2y ≤ 10, x + y ≤ 6, x, y ≥ 0.
Solution
Corner points: (0,0), (6,0), (2,4), (0,5).
At (0,0): Z = 0
At (6,0): Z = 6
At (2,4): Z = 2 + 8 = 10
At (0,5): Z = 10
Maximum Z = 10 at both (2,4) and (0,5)
Q5. A diet is to contain at least 80 units of vitamin A and 100 units of minerals. Two foods F₁ and F₂ are available. F₁ costs Rs. 4/unit and contains 3 units of vitamin A and 5 units of minerals. F₂ costs Rs. 6/unit and contains 5 units of vitamin A and 4 units of minerals. Find the minimum cost.
Solution
Let x = units of F₁, y = units of F₂.
Minimize Z = 4x + 6y
Subject to: 3x + 5y ≥ 80, 5x + 4y ≥ 100, x,y ≥ 0
Corner points: (20, 0), (80/7, 100/7), (0, 25)
At (20,0): Z = 80
At (80/7, 100/7): Z = 320/7 + 600/7 = 920/7 ≈ 131.4
At (0,25): Z = 150
Q1. A bag contains 4 red and 4 black balls. Another bag contains 2 red and 6 black balls. One of the two bags is selected at random and a ball is drawn. If the ball is red, find the probability that it was drawn from the first bag.
Solution
Let E₁ = first bag, E₂ = second bag, A = red ball
P(E₁) = P(E₂) = 1/2
P(A|E₁) = 4/8 = 1/2
P(A|E₂) = 2/8 = 1/4
Q4. A and B throw a pair of dice alternately. A wins if he gets a sum of 6, B wins if he gets a sum of 7. If A starts the game, find the probability that A wins.