Skip to content

Calculus | HSC - Wyatt's Notes

HSC mathematics study notes - Calculus

flowchart TD
A[Calculus] --> B[Key Concepts]
A --> C[Core Principles]
A --> D[Practical Applications]
B --> E[Fundamental definitions]
C --> F[Design patterns]
D --> G[Real-world usage]

First Principles: f(x)=limh0f(x+h)f(x)hf'(x) = \lim_{h \to 0} \frac{f(x+h) - f(x)}{h}

Common Rules:

  • Power rule: ddx[xn]=nxn1\frac{d}{dx}[x^n] = nx^{n-1}
  • Chain rule: ddx[f(g(x))]=f(g(x))g(x)\frac{d}{dx}[f(g(x))] = f'(g(x)) \cdot g'(x)
  • Product rule: ddx[fg]=fg+fg\frac{d}{dx}[fg] = f'g + fg'
  • Quotient rule: ddx[fg]=fgfgg2\frac{d}{dx}\left[\frac{f}{g}\right] = \frac{f'g - fg'}{g^2}

Basic Integrals: xndx=xn+1n+1+C(n1)\int x^n \, dx = \frac{x^{n+1}}{n+1} + C \quad (n \neq -1) 1xdx=lnx+C\int \frac{1}{x} \, dx = \ln|x| + C exdx=ex+C\int e^x \, dx = e^x + C

Definite Integral: abf(x)dx=F(b)F(a)\int_a^b f(x) \, dx = F(b) - F(a)

Stationary points: Set f(x)=0f'(x) = 0 and use the second derivative test:

  • f(x)>0f''(x) > 0: local minimum
  • f(x)<0f''(x) < 0: local maximum

Area between curves: A=abf(x)g(x)dxA = \int_a^b |f(x) - g(x)| \, dx

Kinematics: v=dsdtv = \frac{ds}{dt}, a=dvdta = \frac{dv}{dt}

Problem: Find the derivative of f(x)=3x42x2+5x1f(x) = 3x^4 - 2x^2 + 5x - 1.

Solution:

Step 1: Apply the power rule to each term: f(x)=34x322x+510f'(x) = 3 \cdot 4x^3 - 2 \cdot 2x + 5 \cdot 1 - 0

Step 2: Simplify: f(x)=12x34x+5f'(x) = 12x^3 - 4x + 5

Answer: f(x)=12x34x+5f'(x) = 12x^3 - 4x + 5

Problem: Find dydx\frac{dy}{dx} if y=(3x+2)5y = (3x + 2)^5.

Solution:

Step 1: Let u=3x+2u = 3x + 2, so y=u5y = u^5

Step 2: dydu=5u4\frac{dy}{du} = 5u^4 and dudx=3\frac{du}{dx} = 3

Step 3: Apply chain rule: dydx=5u43=15(3x+2)4\frac{dy}{dx} = 5u^4 \cdot 3 = 15(3x + 2)^4

Answer: dydx=15(3x+2)4\frac{dy}{dx} = 15(3x + 2)^4

Problem: Find the area enclosed between y=x2y = x^2 and y=xy = x for 0x10 \leq x \leq 1.

Solution:

Step 1: Find intersection points: x2=xx(x1)=0x=0x^2 = x \Rightarrow x(x-1) = 0 \Rightarrow x = 0 or x=1x = 1

Step 2: On [0,1][0, 1], xx2x \geq x^2, so: A=01(xx2)dxA = \int_0^1 (x - x^2) \, dx

Step 3: Integrate: A=[x22x33]01=(1213)0=16A = \left[\frac{x^2}{2} - \frac{x^3}{3}\right]_0^1 = \left(\frac{1}{2} - \frac{1}{3}\right) - 0 = \frac{1}{6}

Answer: Area =16= \frac{1}{6} square units

  1. Always include the constant of integration CC for indefinite integrals
  2. For chain rule problems, identify the inner and outer functions
  3. To find areas between curves, always determine which function is above
  4. Check stationary points using the second derivative test, not just the first
  1. Find the derivative of f(x)=sin(3x2)f(x) = \sin(3x^2)
  2. Evaluate 02(4x36x)dx\int_0^2 (4x^3 - 6x) \, dx
  3. Find the area between y=x2y = x^2 and y=4y = 4 for 2x2-2 \leq x \leq 2

Problem: Find the derivative of f(x)=x2exf(x) = x^2 e^x.

Solution:

Step 1: Apply the product rule with u=x2u = x^2 and v=exv = e^x: f(x)=uv+uv=2xex+x2exf'(x) = u'v + uv' = 2x \cdot e^x + x^2 \cdot e^x

Step 2: Factor: f(x)=ex(2x+x2)=xex(2+x)f'(x) = e^x(2x + x^2) = xe^x(2 + x)

Answer: f(x)=xex(x+2)f'(x) = xe^x(x + 2)

Problem: Evaluate 141xdx\int_1^4 \frac{1}{\sqrt{x}} \, dx.

Solution:

Step 1: Rewrite: 14x1/2dx\int_1^4 x^{-1/2} \, dx

Step 2: Integrate using the power rule: [x1/21/2]14=[2x]14\left[\frac{x^{1/2}}{1/2}\right]_1^4 = \left[2\sqrt{x}\right]_1^4

Step 3: Evaluate at limits: 2421=42=22\sqrt{4} - 2\sqrt{1} = 4 - 2 = 2

Answer: The integral equals 22

Problem: A farmer has 200m200\,\text{m} of fencing and wants to enclose a rectangular paddock along a river (no fence needed on the river side). Find the dimensions that maximize the area.

Solution:

Step 1: Let xx be the width (two sides) and ll be the length (one side parallel to river).

Step 2: Fencing constraint: 2x+l=200    l=2002x2x + l = 200 \implies l = 200 - 2x

Step 3: Area: A=xl=x(2002x)=200x2x2A = x \cdot l = x(200 - 2x) = 200x - 2x^2

Step 4: Find stationary points: dAdx=2004x=0    x=50m\frac{dA}{dx} = 200 - 4x = 0 \implies x = 50\,\text{m}

Step 5: Second derivative test: d2Adx2=4<0\frac{d^2A}{dx^2} = -4 < 0, so this is a maximum.

Step 6: Length: l=2002(50)=100ml = 200 - 2(50) = 100\,\text{m}

Answer: Width =50m= 50\,\text{m}, length =100m= 100\,\text{m}, maximum area =5000m2= 5000\,\text{m}^2

Calculus is the mathematical study of continuous change. Differentiation and integration are used in physics, engineering, economics, biology, and virtually every quantitative science.

  1. For optimisation problems, always check the second derivative or boundary values
  2. The chain rule is the most commonly tested rule — practise identifying inner and outer functions
  3. When finding areas between curves, always sketch the graph first
  4. Remember: abf(x)dx=F(b)F(a)\int_a^b f(x) \, dx = F(b) - F(a), not F(a)F(b)F(a) - F(b)

Problem: Find the derivative of f(x)=sinxx2+1f(x) = \frac{\sin x}{x^2 + 1}.

Solution:

Step 1: Apply the quotient rule with u=sinxu = \sin x and v=x2+1v = x^2 + 1: f(x)=uvuvv2f'(x) = \frac{u'v - uv'}{v^2}

Step 2: Compute derivatives: u=cosx,v=2xu' = \cos x, \quad v' = 2x

Step 3: Substitute: f(x)=cosx(x2+1)sinx2x(x2+1)2f'(x) = \frac{\cos x \cdot (x^2 + 1) - \sin x \cdot 2x}{(x^2 + 1)^2}

Step 4: Simplify: f(x)=(x2+1)cosx2xsinx(x2+1)2f'(x) = \frac{(x^2 + 1)\cos x - 2x\sin x}{(x^2 + 1)^2}

Answer: f(x)=(x2+1)cosx2xsinx(x2+1)2f'(x) = \frac{(x^2 + 1)\cos x - 2x\sin x}{(x^2 + 1)^2}

Common mistake: Forgetting the minus sign in the quotient rule numerator. Remember: “low d-high minus high d-low, over low squared.”

Problem: Evaluate 012xx2+1dx\int_0^1 2x\sqrt{x^2 + 1} \, dx.

Solution:

Step 1: Let u=x2+1u = x^2 + 1, so du=2xdxdu = 2x \, dx

Step 2: Change limits: when x=0x = 0, u=1u = 1; when x=1x = 1, u=2u = 2

Step 3: Substitute: 012xx2+1dx=12udu=12u1/2du\int_0^1 2x\sqrt{x^2 + 1} \, dx = \int_1^2 \sqrt{u} \, du = \int_1^2 u^{1/2} \, du

Step 4: Integrate: [23u3/2]12=23(23/213/2)=23(221)\left[\frac{2}{3}u^{3/2}\right]_1^2 = \frac{2}{3}(2^{3/2} - 1^{3/2}) = \frac{2}{3}(2\sqrt{2} - 1)

Answer: 23(221)1.22\frac{2}{3}(2\sqrt{2} - 1) \approx 1.22

Common mistake: Forgetting to change the limits of integration when making a substitution. If you change variables, you must also change the limits.

Problem: A particle moves along a line with velocity v(t)=3t212t+9v(t) = 3t^2 - 12t + 9 m/s. Find the total distance traveled between t=0t = 0 and t=4t = 4 seconds.

Solution:

Step 1: Find when v(t)=0v(t) = 0: 3t212t+9=0    t24t+3=0    (t1)(t3)=03t^2 - 12t + 9 = 0 \implies t^2 - 4t + 3 = 0 \implies (t-1)(t-3) = 0 t=1 or t=3t = 1 \text{ or } t = 3

Step 2: Check the sign of v(t)v(t) in each interval:

  • [0,1][0, 1]: v(0.5)=3(0.25)12(0.5)+9=0.756+9=3.75>0v(0.5) = 3(0.25) - 12(0.5) + 9 = 0.75 - 6 + 9 = 3.75 > 0 (moving forward)
  • [1,3][1, 3]: v(2)=3(4)12(2)+9=1224+9=3<0v(2) = 3(4) - 12(2) + 9 = 12 - 24 + 9 = -3 < 0 (moving backward)
  • [3,4][3, 4]: v(3.5)=3(12.25)12(3.5)+9=36.7542+9=3.75>0v(3.5) = 3(12.25) - 12(3.5) + 9 = 36.75 - 42 + 9 = 3.75 > 0 (moving forward)

Step 3: Distance = 04v(t)dt\int_0^4 |v(t)| \, dt: =01(3t212t+9)dt+13(3t212t+9)dt+34(3t212t+9)dt= \int_0^1 (3t^2 - 12t + 9) \, dt + \int_1^3 -(3t^2 - 12t + 9) \, dt + \int_3^4 (3t^2 - 12t + 9) \, dt

Step 4: Compute each integral: (3t212t+9)dt=t36t2+9t\int (3t^2 - 12t + 9) \, dt = t^3 - 6t^2 + 9t

[t36t2+9t]01=(16+9)0=4[t^3 - 6t^2 + 9t]_0^1 = (1 - 6 + 9) - 0 = 4

[t36t2+9t]13=[(2754+27)(16+9)]=[04]=4-[t^3 - 6t^2 + 9t]_1^3 = -[(27 - 54 + 27) - (1 - 6 + 9)] = -[0 - 4] = 4

[t36t2+9t]34=[(6496+36)(2754+27)]=[40]=4[t^3 - 6t^2 + 9t]_3^4 = [(64 - 96 + 36) - (27 - 54 + 27)] = [4 - 0] = 4

Step 5: Total distance = 4+4+4=124 + 4 + 4 = 12 m

Answer: Total distance traveled is 1212 m

Common mistake: Confusing distance with displacement. Displacement would be 04v(t)dt=4\int_0^4 v(t) \, dt = 4, but distance requires integrating the absolute value of velocity.

Problem: Find dydx\frac{dy}{dx} if x2+xy+y2=7x^2 + xy + y^2 = 7.

Solution:

Step 1: Differentiate both sides with respect to xx: 2x+y+xdydx+2ydydx=02x + y + x\frac{dy}{dx} + 2y\frac{dy}{dx} = 0

Step 2: Collect dydx\frac{dy}{dx} terms: dydx(x+2y)=2xy\frac{dy}{dx}(x + 2y) = -2x - y

Step 3: Solve: dydx=2xyx+2y=2x+yx+2y\frac{dy}{dx} = \frac{-2x - y}{x + 2y} = -\frac{2x + y}{x + 2y}

Answer: dydx=2x+yx+2y\frac{dy}{dx} = -\frac{2x + y}{x + 2y}

Common mistake: Forgetting that yy is a function of xx, so ddx[xy]=y+xdydx\frac{d}{dx}[xy] = y + x\frac{dy}{dx} (product rule), not just yy.

Problem: Evaluate xcosxdx\int x \cos x \, dx.

Solution:

Step 1: Choose u=xu = x and dv=cosxdxdv = \cos x \, dx

Step 2: Then du=dxdu = dx and v=sinxv = \sin x

Step 3: Apply integration by parts udv=uvvdu\int u \, dv = uv - \int v \, du: xcosxdx=xsinxsinxdx\int x \cos x \, dx = x \sin x - \int \sin x \, dx

Step 4: Evaluate the remaining integral: =xsinx(cosx)+C=xsinx+cosx+C= x \sin x - (-\cos x) + C = x \sin x + \cos x + C

Answer: xcosxdx=xsinx+cosx+C\int x \cos x \, dx = x \sin x + \cos x + C

Common mistake: Choosing the wrong uu and dvdv. A good rule of thumb is LIATE (Logarithmic, Inverse trig, Algebraic, Trigonometric, Exponential) — choose uu from left to right.

Problem: Find the volume generated when the region bounded by y=x2y = x^2, y=0y = 0, x=1x = 1 is rotated about the xx-axis.

Solution:

Step 1: The volume formula for rotation about the xx-axis: V=πab[f(x)]2dxV = \pi \int_a^b [f(x)]^2 \, dx

Step 2: Substitute f(x)=x2f(x) = x^2, a=0a = 0, b=1b = 1: V=π01(x2)2dx=π01x4dxV = \pi \int_0^1 (x^2)^2 \, dx = \pi \int_0^1 x^4 \, dx

Step 3: Integrate: V=π[x55]01=π(150)=π5V = \pi \left[\frac{x^5}{5}\right]_0^1 = \pi \left(\frac{1}{5} - 0\right) = \frac{\pi}{5}

Answer: Volume =π5= \frac{\pi}{5} cubic units

Common mistake: Forgetting to square the function when using the disk method. The formula is π[f(x)]2dx\pi \int [f(x)]^2 \, dx, not πf(x)dx\pi \int f(x) \, dx.

  • Algebra — Quadratic equations and logarithmic functions from algebra are prerequisites for many calculus techniques.
  • Mechanics — Kinematics uses derivatives and integrals to describe motion, directly applying calculus to physics.
  • Waves — Wave equations involve trigonometric differentiation and integration used throughout this topic.
  • Organic — Reaction rate equations in organic chemistry use exponential and logarithmic functions from calculus.

Calculus is about change and accumulation: Differentiation measures how fast something changes (slope of a curve), while integration measures how much accumulates (area under a curve). These are inverse operations — the Fundamental Theorem of Calculus connects them, just as addition and subtraction are inverses.

Why it matters: Calculus is the language of change — it describes how planets orbit, how populations grow, how heat flows, and how objects move. Every branch of science and engineering uses calculus to model dynamic systems.

The key insight: The derivative tells you the rate of change at an instant, while the integral tells you the total change over an interval — they’re two perspectives on the same relationship.

Forgetting the constant of integration for indefinite integrals. Every indefinite integral must include ”+ C” because the derivative of a constant is zero. Students often omit the constant, losing the family of antiderivatives. This is automatically handled in definite integrals via the Fundamental Theorem, but is essential for indefinite integrals.

Confusing the product rule and chain rule. The product rule (fg)’ = f’g + fg’ applies to the product of two functions. The chain rule (f(g(x)))’ = f’(g(x)) * g’(x) applies to composition. Students often apply the product rule to composite functions or the chain rule to products, giving incorrect derivatives.

Forgetting to change limits when using substitution in definite integrals. When substituting u = g(x), the limits of integration must also change to u(a) and u(b). Students sometimes evaluate the antiderivative at the original x-limits instead of the new u-limits, giving incorrect numerical answers.