Kirchhoffs Laws =============== Networks (circuits) of electronic components (for now we only consider resistors) can be quite complex. E.g. consider the circuit below: .. tikz:: :xscale: 35 \draw (0,0) to[V=4.5 V] (0,4) to[short] (2,4) to[R=$R_1$] (2,2) to[R=$R_2$] (2,0) to[short] (0,0); \draw (2,4) to[short] (4,4) to[R=$R_4$] (4,2) to[R=$R_5$] (4,0) to[short] (2,0); \draw (2,2) to[R=$R_3$] (4,2); There is one battery of 4.5 V in the circuit and because of this currents will start to flow. In the stable situation we have stable voltages across all components and stable currents through all components. To calculate all voltages and currents all we need is Ohm's law and Kirchhoffs laws. Ohm's law relates the voltage across a component with the current through the component: .. math:: U = I\; R Kirchhoffs laws are quite simple. In fact we have used them implicitly when we considered serial and parallel circuits of resistors. Kirchhoff's Current Law ----------------------- At any node in a circuit the sum of currents flowing into that node is equal to the sum of currents flowing out of that node. In case we treat currents as positive or negative to indicate the direction of the current, KCL becomes really simple: .. math:: \sum_k I_k = 0 i.e. the sum of all currents leading into one node is zero. .. example drawing is needed here Kirchhoff Voltage Law --------------------- The directed sum of electrical potential differences (voltages) around any closed network is zero: .. math:: \sum_k U_k = 0 .. example drawing is needed here