Lesson Notes By Weeks and Term v3 - Senior Secondary 2

Logis Circuits I (Standard single logic gates

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

Subject: Computer & IT

Class: Senior Secondary 2

Term: 3rd Term

Week: 1

Theme: Computer Hardware

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

A logic gate is an elementary building block of a digital circuit. It takes one or more binary inputs (typically two) and produces a single binary output. The output is determined by the specific logic operation performed by the gate. These operations are based on Boolean algebra, which deals with true (1) and false (0) values.

Binary Values: Digital systems operate using binary numbers (0s and 1s). 0 (LOW/FALSE/OFF): Represents a low voltage level or an inactive state. 1 (HIGH/TRUE/ON): Represents a high voltage level or an active state.

Lesson notes

Definition: The AND gate is a digital circuit that produces a HIGH (1) output only if all of its inputs are HIGH (1). If any input is LOW (0), the output will be LOW (0).

Analogy (Nigerian Context): Imagine a security gate at a bank that requires two separate key cards (Input A and Input B) to open. The gate (Output) will only open if both key cards are simultaneously inserted and validated. If only one or none are inserted, the gate remains closed.

Standard Symbol (2-input): ``` A ---\ |D--- Out B ---/ ``` (A 'D' shape with inputs on the flat side and output on the curved side)

Truth Table (2-input): A truth table lists all possible combinations of inputs and the corresponding output for a logic gate. | Input A | Input B | Output (A AND B) | | :------ | :------ | :--------------- | | 0 | 0 | 0 | | 0 | 1 | 0 | | 1 | 0 | 0 | | 1 | 1 | 1 | Logic Equation: The logic equation represents the gate's function using Boolean algebra. `Out = A AND B` `Out = A . B` (Dot notation is common) `Out = AB` (Sometimes written without a dot)

Input/Output Signals: Input A, Input B: 0 or 1 (LOW or HIGH)

Output: 0 or 1 (LOW or HIGH) This section provides the core content necessary for teaching the lesson comprehensively.

Definition: The OR gate is a digital circuit that produces a HIGH (1) output if any one or more of its inputs are HIGH (1). The output is LOW (0) only if all of its inputs are LOW (0).

Analogy (Nigerian Context): Consider a light in a room that can be switched on from two different locations (Switch A or Switch B). The light (Output) will turn ON if either Switch A is pressed OR Switch B is pressed OR both are pressed. The light will only be OFF if both switches are OF

F. Standard Symbol (2-input): ``` A ---_ \ )- -- Out / B ---' ``` (A curved shape like a shield, with inputs on the flat-ish side and output on the curved tip)

Truth Table (2-input): | Input A | Input B | Output (A OR B) | | :------ | :------ | :-------------- | | 0 | 0 | 0 | | 0 | 1 | 1 | | 1 | 0 | 1 | | 1 | 1 | 1 | Logic Equation: `Out = A OR B` `Out = A + B` (Plus sign denotes OR operation)

Input/Output Signals: Input A, Input B: 0 or 1 (LOW or HIGH)

Output: 0 or 1 (LOW or HIGH)

Definition: The NOT gate is the simplest logic gate. It takes a single input and produces an output that is the inverse or complement of the input. If the input is HIGH (1), the output is LOW (0), and vice versa.

Analogy (Nigerian Context): Think of a security light that turns ON when it's dark (input is "dark") and OFF when it's bright (input is "not dark"). Or a system that sounds an alarm if a specific condition is NOT met.

Standard Symbol (1-input): ``` A ---|>o--- Out ``` (A triangle with a small circle (bubble) at the output. The bubble signifies inversion.)

Truth Table (1-input): | Input A | Output (NOT A) | | :------ | :------------- | | 0 | 1 | | 1 | 0 | Logic Equation: `Out = NOT A` `Out = A'` (Prime symbol) `Out = $\bar{A}$` (Bar symbol, most common in Boolean algebra)

Input/Output Signals: Input A: 0 or 1 (LOW or HIGH)

Output: 0 or 1 (LOW or HIGH)

Real-life applications

Understanding logic gates is fundamental to appreciating how many automated systems around us function.

Home/Office Security Systems (Nigeria): Imagine a typical Nigerian home or office with a basic alarm system. An OR gate can be used where if a door sensor is triggered (Input A = 1) OR a window sensor is triggered (Input B = 1), then the alarm sounds (Output = 1). An AND gate might be used if the alarm system only activates if a motion sensor detects movement (Input A = 1) AND the time is between 10 PM and 6 AM (Input B = 1). Industrial Control Systems (Nigerian Factories): In a manufacturing plant, a machine might require multiple conditions to be met before it starts. For example, a conveyor belt (Output) might only start if the safety guard is closed (Input A = 1) AND the power button is pressed (Input B = 1) AND the emergency stop is NOT activated (Input C = 0). This integrates AND and NOT logic. Automated Water Pump Controller (Nigerian Farms/Homes): A simple automated water pump could use logic. The pump (Output) should turn ON if the water tank level is LOW (Input A = 1) AND the power is available (Input B = 1). If the tank level is NOT LOW (i.e., FULL), the pump should be OFF. This uses both AND and NOT logic.

Teacher activity

Evaluation guide

Reference guide