diff --git a/README.md b/README.md
index f83399a6cb8d6f32e78342787e0058666ca22930..c0ad806ca473cd96682f427b08638b1121910c6f 100644
--- a/README.md
+++ b/README.md
@@ -167,3 +167,33 @@ while True:
 <img src="Screenshot 06.10.23_2.png" width="30%">
 
 # Task 5
+
+## Ohm's law:
+`V = I * R` to calculate Voltage
+
+```
+Where...
+V = Voltage
+I = Current
+R = Resistance
+```
+
+*Therefore... if we rearrange Ohms law we can calculate more variables*
+
+`I = V / R` to calculate Current
+
+`R = V / I` to calculate Resistance
+
+### Additionally
+
+>Ohm’s law states that the voltage (V) across a resistor is proportional to the current (I), where the constant of proportionality is the resistance (R). 
+
+>E.g. If a 200 ohm resistor is attached across the terminals of a 3V battery, then a current of 3 / 200 = 0.015 amps flows through that resistor.
+
+*Futhermore...*
+
+> If there are multiple resistors in series, we can reduce the current by the sum of all the resistors together
+
+`R = R1 + R2 + ... + Rn`
+
+## 
\ No newline at end of file