summaryrefslogtreecommitdiff
path: root/620/CH5/EX5.9/example5_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '620/CH5/EX5.9/example5_9.sce')
-rw-r--r--620/CH5/EX5.9/example5_9.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/620/CH5/EX5.9/example5_9.sce b/620/CH5/EX5.9/example5_9.sce
new file mode 100644
index 000000000..ab3512bc0
--- /dev/null
+++ b/620/CH5/EX5.9/example5_9.sce
@@ -0,0 +1,11 @@
+r1=1;
+r2=1.2;
+r=r1+r2;
+v=10;
+disp("Part a");
+v1=v*r2/r;
+disp("the maximum voltage (in V) is"); disp(v);
+disp("the minimum voltage (in V) is"); disp(v1);
+disp("Part b");
+v2=v*(r1/2+r2)/r;
+disp("the volatge (in V) is"); disp(v2); \ No newline at end of file