summaryrefslogtreecommitdiff
path: root/3673/CH3/EX3.2/Ex3_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3673/CH3/EX3.2/Ex3_2.sce')
-rw-r--r--3673/CH3/EX3.2/Ex3_2.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3673/CH3/EX3.2/Ex3_2.sce b/3673/CH3/EX3.2/Ex3_2.sce
new file mode 100644
index 000000000..37c43c067
--- /dev/null
+++ b/3673/CH3/EX3.2/Ex3_2.sce
@@ -0,0 +1,11 @@
+//Example 3_2 page no:113
+clc
+R1=10//resistance in ohm
+R2=5//resistance in ohm
+R3=20//resistance in ohm
+r1=((R1*R2)+(R2*R3)+(R3*R1))/R3
+disp(r1,"resistance r1 is (in ohm)")
+r2=((R1*R2)+(R2*R3)+(R3*R1))/R1
+disp(r2,"resistance r2 is (in ohm)")
+r3=((R1*R2)+(R2*R3)+(R3*R1))/R2
+disp(r3,"resistance r3 is (in ohm)")