// Example 2.4 v=8.8*{2/(2+2.4)}; // by voltage divider rule disp(' Anknown Voltage across the R1 = '+string(v)+' volt'); v1=8.8*{2.4/(2+2.4)}; // by voltage divider rule disp(' Anknown Voltage across the R1 = '+string(v1)+' volt'); i=4.8/4; // I=V/R disp(' Anknown Current I1 = '+string(i)+' Amp'); i1=4.8/6; // I=V/R disp(' Anknown Current I2 = '+string(i1)+' Amp'); // p 20 2.4