summaryrefslogtreecommitdiff
path: root/3673/CH1/EX1.a.17
diff options
context:
space:
mode:
Diffstat (limited to '3673/CH1/EX1.a.17')
-rw-r--r--3673/CH1/EX1.a.17/Example_a_1_17.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/3673/CH1/EX1.a.17/Example_a_1_17.sce b/3673/CH1/EX1.a.17/Example_a_1_17.sce
new file mode 100644
index 000000000..77d92666b
--- /dev/null
+++ b/3673/CH1/EX1.a.17/Example_a_1_17.sce
@@ -0,0 +1,9 @@
+//Example 1_17 page no:34
+clc;
+Va=1;//here Va is assumed to be one hence it will canceled out in calculation
+R=1;//here R is assumed to be one it will be assigned correct value on the flow of calculation
+V10=Va*(10/15);
+Vr=Va*R/(20+R);
+R=(10/15)*(20*3);//here 3 is included to show that R is canceled in calculation
+//hence 3R-2R=R for simplicity we introduced 3 in calculation
+disp(R,"the resistance R in the circuit is(in ohm)");