From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 620/CH5/EX5.9/example5_9.sce | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 620/CH5/EX5.9/example5_9.sce (limited to '620/CH5/EX5.9/example5_9.sce') 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 -- cgit