Lesson Notes By Weeks and Term v3 - Senior Secondary 1

The straight line

Download the Lessonotes Mobile Nigeria 2025 app for faster lesson access on Android and iPhone.

Subject: Further Mathematics

Class: Senior Secondary 1

Term: 3rd Term

Week: 2

Theme: Coordinate Geometry

Lesson Video

This page supports the lesson note with a companion video and a short classroom-ready summary.

For class groups and homework, share this lesson page so learners also get the summary, objectives, and full lesson context.

Performance objectives

Lesson summary

Determine the mid-point of a line segment Determine the gradient of a straight line Determine the distance between two points Determine the condition for parallelism and perpendicularity Determine the equation of a line in different for ms Transform non-linear relationships in to linear for ms Determine the are as of triangles and quadrilaterals

Lesson notes

Teacher Activities: Introduction & Recap: Begin by briefly reviewing the Cartesian coordinate system, plotting points, and understanding axes. Emphasize that coordinates are used to locate positions, much like addresses in a Nigerian city.

Concept Delivery: Systematically introduce each concept (mid-point, gradient, distance, parallelism/perpendicularity, equation forms, transformations, area calculation) using the explanations and worked examples provided in Section

2. For Mid-point and Distance, explain the derivation of the formulae from basic algebra and Pythagoras theorem. Use visual aids like a large graph on the board. For Gradient, draw lines with different slopes to illustrate positive, negative, zero, and undefined gradients. Relate to real-world slopes (e.g., a steep road leading to Aso Rock, a flat road in Kano). For Parallelism and Perpendicularity, draw pairs of lines to demonstrate the conditions. For Equation of a Line, explain the distinct scenarios where each form is most convenient. Convert between forms to show their equivalence. For Transformations, explain the role of logarithms in linearizing non-linear functions. Provide practical contexts like analyzing population growth data or manufacturing costs. For Area Calculation, demonstrate the Shoelace formula step-by-step, emphasizing the importance of ordering the vertices and repeating the first point.

Interactive Engagement: Pose probing questions during explanations to check for understanding (e.g., "What happens to the gradient if the line is vertical?").

Guided Practice Facilitation: Lead students through the guided practice questions (Section 4), encouraging them to attempt solutions before revealing them. Provide hints as necessary.

Activity Supervision: Monitor student work during individual and group activities. Provide constructive feedback and clarify misconceptions.

Summary and Conclusion: Recap key formulae and concepts, reinforcing their application. Assign independent practice.

Student Activities: Active Listening & Note-Taking: Pay close attention to explanations and record key formulae, definitions, and examples in their notebooks.

Participation: Answer teacher's questions, contribute to discussions, and ask clarifying questions when confused.

Problem Solving (Individual & Group): Work through guided practice questions with teacher support. Collaborate in small groups to solve challenging problems, discussing different approaches. Attempt independent practice questions individually.

Visual Representation: Sketch graphs or diagrams for problems involving lines and points to aid understanding, especially for gradient and distance.

Presentation: Selected students may present their solutions to problems on the board, explaining their reasoning. plotting. Identify what variables should be plotted on the axes and what the gradient and y-intercept would represent.

Solution 4: Given the relationship $N = N_0 k^t$. This is an exponential relationship. To linearize it, take the logarithm (e.g., base 10) of both sides: $\log N = \log (N_0 k^t)$ Using logarithm properties: $\log(AB) = \log A + \log B$ and $\log(x^y) = y \log x$: $\log N = \log N_0 + \log k^t$ $\log N = \log N_0 + t \log k$ Let $Y = \log N$, $X = t$, $C = \log N_0$, and $M = \log k$. The equation becomes $Y = M X + C$.

Variables to plot: Plot $\log N$ on the y-axis and $t$ on the x-axis.

Gradient: The gradient of the linear plot will be $M = \log k$. From this, $k$ can be found by $k = 10^M$.

Y-intercept: The Y-intercept of the linear plot will be $C = \log N_0$. From this, $N_0$ can be found by $N_0 = 10^C$.

Commentary: This transformation allows experimental data to be plotted as a straight line, making it easier to determine the initial number of bacteria ($N_0$) and the growth rate constant ($k$) using linear regression techniques, which is common in biological studies in Nigeria.

Question 5 (Area of Quadrilateral): A local government council wants to calculate the area of a proposed market square. The corners of the square are given by the coordinates $A(0, 0)$, $B(10, 0)$, $C(12, 8)$, and $D(2, 8)$. Calculate the area of the market square.

Solution 5: The vertices are given in order: $A(0, 0)$, $B(10, 0)$, $C(12, 8)$, $D(2, 8)$. Using the Shoelace formula for a quadrilateral: Area $= \frac{1}{2} |(x_1y_2 + x_2y_3 + x_3y_4 + x_4y_1) - (y_1x_2 + y_2x_3 + y_3x_4 + y_4x_1)|$ List coordinates with the first point repeated at the end: (0, 0) (10, 0) (12, 8) (2, 8) (0, 0)

Calculate downward products: $0 \times 0 = 0$ $10 \times 8 = 80$ $12 \times 8 = 96$ $2 \times 0 = 0$ Sum of downward products = $0 + 80 + 96 + 0 = 176$ Calculate upward products: $0 \times 10 = 0$ $0 \times 12 = 0$ $8 \times 2 = 16$ $8 \times 0 = 0$ Sum of upward products = $0 + 0 + 16 + 0 = 16$ Area $= \frac{1}{2} |(\text{Sum of downward products}) - (\text{Sum of upward products})|$ Area $= \frac{1}{2} |176 - 16|$ Area $= \frac{1}{2} |160|$ Area $= 80$ square units.

Commentary: This calculation helps the local government determine the size of the market square for planning purposes, such as allocating stalls or estimating construction costs.* Question 1 (Mid-point and Distance): Two towns in Nigeria, Ife and Oshogbo, are approximated by coordinates $A(1, 8)$ and $B(9, 2)$ respectively on a local map grid (units in km). a) Find the mid-point of the straight road connecting Ife and Oshogbo. b) Calculate the straight-line distance between Ife and Oshogbo.

Solution 1: a)

Mid-point: Given $A(x_1, y_1) = (1, 8)$ and $B(x_2, y_2) = (9, 2)$. Mid-point $M = \left(\frac{x_1 + x_2}{2}, \frac{y_1 + y_2}{2}\right)$ $x = \frac{1 + 9}{2} = \frac{10}{2} = 5$ $y = \frac{8 + 2}{2} = \frac{10}{2} = 5$ The mid-point is $(5, 5)$.

Commentary: This determines the location halfway along the road for potential rest stops or emergency services deployment. b)

Distance: Distance $d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}$ $d = \sqrt{(9 - 1)^2 + (2 - 8)^2}$ $d = \sqrt{(8)^2 + (-6)^2}$ $d = \sqrt{64 + 36}$ $d = \sqrt{100}$ $d = 10$ km.

Commentary: This calculates the direct travel distance, useful for planning and cost estimation. Question 2 (Gradient and Equation of a line): A local architect designs a ramp for a building. The ramp starts at point $P(0, 0)$ and ends at point $Q(4, 3)$ (coordinates in meters). a) Determine the gradient of the ramp. b) Find the equation of the line representing the ramp in slope-intercept form ($y=mx+c$).

Solution 2: a)

Gradient: Given $P(x_1, y_1) = (0, 0)$ and $Q(x_2, y_2) = (4, 3)$. Gradient $m = \frac{y_2 - y_1}{x_2 - x_1} = \frac{3 - 0}{4 - 0} = \frac{3}{4}$.

Commentary: The gradient of 3/4 indicates a rise of 3 units for every 4 units horizontally, which is important for accessibility regulations. b)

Equation of the line: Using the gradient $m = \frac{3}{4}$ and point $P(0, 0)$ (which is also the y-intercept, so $c=0$). Using $y = mx + c$: $y = \frac{3}{4}x + 0$ $y = \frac{3}{4}x$ Alternatively, using point-slope form with $P(0,0)$: $y - 0 = \frac{3}{4}(x - 0) \implies y = \frac{3}{4}x$.

Commentary: This equation can be used to determine the height of the ramp at any horizontal distance from the start. Question 3 (Parallel and Perpendicular Lines): Consider two proposed drainage channels in a new estate. Channel 1 passes through points $A(2, 5)$ and $B(6, 7)$. Channel 2 passes through points $C(1, 10)$ and $D(3, 6)$. a) Determine the gradients of both channels. b) Are the channels parallel, perpendicular, or neither? Justify your answer.

Solution 3: a)

Gradients: For Channel 1 (line AB): $A(x_1, y_1) = (2, 5)$, $B(x_2, y_2) = (6, 7)$ $m_{AB} = \frac{7 - 5}{6 - 2} = \frac{2}{4} = \frac{1}{2}$ For Channel 2 (line CD): $C(x_1, y_1) = (1, 10)$, $D(x_2, y_2) = (3, 6)$ $m_{CD} = \frac{6 - 10}{3 - 1} = \frac{-4}{2} = -2$

Commentary: Gradients help engineers understand the flow rate and potential for erosion in the channels. b) Parallel, Perpendicular, or Neither: Compare the gradients: $m_{AB} = \frac{1}{2}$ and $m_{CD} = -2$. Are they parallel? No, because $m_{AB} \neq m_{CD}$. Are they perpendicular?

Check the product: $m_{AB} \cdot m_{CD} = \left(\frac{1}{2}\right) \cdot (-2) = -1$. Since the product of their gradients is $-1$, the channels are perpendicular.

Commentary: Perpendicular channels might be used in a grid layout for efficient water management in the estate, preventing water from flowing directly into another channel. Question 4 (Transformation to Linear Form): A scientist in a Nigerian lab is studying the relationship between the growth of a bacteria colony ($N$) and time ($t$) and hypothesizes a relationship of the form $N = N_0 k^t$. Show how this relationship can be transformed into a linear form suitable for plotting. Identify what variables should be plotted on the axes and what the gradient and y-intercept would represent.

Solution 4: Given the relationship $N = N_0 k^t$. This is an exponential relationship. To linearize it, take the logarithm (e.g., base 10) of both sides: $\log N = \log (N_0 k^t)$ Using logarithm properties: $\log(AB) = \log A + \log B$ and $\log(x^y) = y \log x$: $\log N = \log N_0 + \log k^t$ $\log N = \log N_0 + t \log k$ Let $Y = \log N$, $X = t$, $C The mid-point of a line segment is the point that divides the segment into two equal parts. If a line segment connects two points $P_1(x_1, y_1)$ and $P_2(x_2, y_2)$, its mid-point $M(x, y)$ is given by the formula: $M(x, y) = \left(\frac{x_1 + x_2}{2}, \frac{y_1 + y_2}{2}\right)$ Explanation: The x-coordinate of the midpoint is the average of the x-coordinates of the two end points, and similarly for the y-coordinate. Worked Example 2.1 (Mid-point): Find the mid-point of the line segment joining the points $A(2, -3)$ and $B(-6, 5)$.

Solution: Given $A(x_1, y_1) = (2, -3)$ and $B(x_2, y_2) = (-6, 5)$.

Using the mid-point formula: $M(x, y) = \left(\frac{x_1 + x_2}{2}, \frac{y_1 + y_2}{2}\right)$ $x = \frac{2 + (-6)}{2} = \frac{2 - 6}{2} = \frac{-4}{2} = -2$ $y = \frac{-3 + 5}{2} = \frac{2}{2} = 1$ Therefore, the mid-point is $M(-2, 1)$.

Real-life applications

Civil Engineering and Construction: Road Design: Gradients are essential for designing roads, bridges, and ramps to ensure safety and accessibility. A steep gradient (high slope) on a road like those in parts of Enugu or Jos would make driving difficult. Engineers calculate gradients to ensure proper drainage and vehicle performance.

Building Layout: The concept of perpendicular lines is fundamental in constructing walls and foundations to ensure structural stability and aesthetic appeal. Parallel lines are used for beams, trusses, and rows of buildings in housing estates. Mid-points help in centrally locating features like pillars or doors.

Land Surveying & Demarcation: The distance formula is used to calculate exact distances between boundary markers for property demarcation. The area of polygons (triangles, quadrilaterals) using coordinates is crucial for determining land size for sales, taxation, or agricultural planning in rural and urban areas of Nigeria.

Economics and Business: Cost-Benefit Analysis: Businesses often model cost, revenue, and profit functions as linear equations to determine break-even points or optimal production levels. For instance, the total cost of producing goods often has a fixed component and a variable component per unit, resulting in a linear relationship.

Market Research & Forecasting: Linear relationships can be used to model trends in sales, population growth, or demand for products. The transformation of non-linear relationships (e.g., exponential growth of a new product's popularity) into linear forms allows economists and marketers to use simpler linear regression techniques for analysis and forecasting future trends in the Nigerian market.

Geography and Cartography: Mapping and Navigation: Coordinates are the basis of all mapping systems (e.g., GPS). The distance formula allows for calculating distances between locations on a map, which is useful for travel planning, logistics, and search-and-rescue operations across Nigeria's diverse landscape.

Urban Planning: City planners use coordinate geometry to design city layouts, allocate land for infrastructure (e.g., roads, parks, residential areas), and determine optimal locations for public services. Mid-points can help locate central facilities, while gradients inform decisions about infrastructure in hilly terrain.

Teacher activity

Evaluation guide

Reference guide