Grade 9 Robotics Reviewer Quarter 2 PDF
Grade 9 Robotics Reviewer Quarter 2 PDF
Grade 9 Robotics Reviewer Quarter 2 PDF
REVIEWER
What is a Diode?
A diode is a two-terminal electronic component that conducts current primarily
in one direction; it has low resistance in one direction, and high resistance in the
other.
What is a Rectifier?
A rectifier is an electrical device that converts alternating current, which
periodically reverses direction, to direct current, which flows in only one direction.
The reverse operation is performed by an inverter. The process is known as
rectification, since it “straightens” the direction of current
I. Creating a Rectifier
Transformer
- steps down high voltage AC mains to low voltage AC
Smoothing/Capacitor
- smooths the DC from varying greatly to a small ripple
Rectifier
- converts AC to DC, but the DC output is varying
Regulator/Transistor
- eliminates ripple by setting DC output to a fixed voltage.
Converting Decimal to Binary and
Converting Binary to Decimal
What is a Binary?
Binary describes a numbering scheme in which there
are only two possible values for each digit -- 0 or 1 --
and is the basis for all binary code used in computing 1 – means true or on
systems. These systems use this code to understand
0 – means false or off
operational instructions and user input and to
present a relevant output to the user.
What is a decimal?
Decimal is a term that describes the base-10 number system, probably the most
commonly used number system. The decimal number system consists of ten
single-digit numbers: 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9. The number after 9 is 10
Subtraction Method
- Multiply the variable of 1 by 2 and repeat by multiplying the solution by
2 until you get the value closest to the decimal
Example:
75 = 1 ×2 × 4 × 8 × 16 × 32 × 64 = 128
128 is not the closest value to 75 so we cancel it out
64 is the closest value to 75
75 – 64 = 11
Find the value closest to the solution
11 – 8 = 3
3–2=1
The values used to subtract the solution are
64, 8, 2 and 1 as 1 is the last solution will be used to convert it to the value
1 in binary
(64 + 8 + 2 + 1 = 75
64 32 16 8 4 2 1
Division Method
- Simply divide the values by 2. If the quotient has a remainder, it is
converted to 1 in binary
Example: 75
75 ÷ 2 = 37 R1
37 ÷ 2 = 18 R1
18 ÷ 2 = 9 R0
9 ÷ 2 = 4 R1
4 ÷ 2 = 2 R0
2 ÷ 2 = 1 R0
1 ÷ 2 = 0 R1
Power rule
- Add notations of 2 including the power of 0 on each The power of 0
binary digit from right to left is equal to 1
- Each notations represent the value of each binary digits
- 0 value including the notation will be cancelled out
- Add all the value
Figure example:
I. Logic Gates
What is a logic gate?
A Logic Gate is the basic building block of any
digital system. It is an electronic circuit having 0 – no digital signal
one or more than one input and only one output.
1 – digital signal
The relationship between the input and output
is based on a certain logic.
OR Gate
- It has 2 inputs and 1 output, therefore there can be 2 rays to 2 possible
output
Input Output
A B Y
0 0 0
0 1 1
1 0 1
1 1 1
Output:
A×B=Y
Input Output
A B Y
0 0 0
0 1 0
1 0 0
1 1 1
NOT Gate
- An inverter or NOT gate is one that outputs the opposite state as what is
input. It has only one input and one output
0 1
1 0
Example illustration:
AND gate logic table to NOT gate logic table
A B Y A B Y
0 0 0 0 0 1
0 1 1 0 1 0
1 0 1 1 0 0
1 1 1 1 1 0
NOT and AND gates are also called NAND gates, while NOT and OR gates are
called NOR gates.
XOR Gate
- XOR gate or Exclusive OR gate is simply OR gate but unlike OR gate, if the
signal input are both high (1X, 1Y) and low (0X, 0Y) the output signal will
be 0.
Input Output
A B Y
0 0 0
0 1 1
1 0 1
1 1 0
XNOR Gate
- It is developed by combining XOR gate and NOT gate.
Input Output
A B Y
0 0 1
0 1 0
1 0 0
1 1 1
Example 2:
Example 3: