diff options
Diffstat (limited to '620/CH4/EX4.7/example4_7.sce')
-rw-r--r-- | 620/CH4/EX4.7/example4_7.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/620/CH4/EX4.7/example4_7.sce b/620/CH4/EX4.7/example4_7.sce new file mode 100644 index 000000000..9bb652975 --- /dev/null +++ b/620/CH4/EX4.7/example4_7.sce @@ -0,0 +1,12 @@ +disp("Part a");
+v=120;
+p=60;
+r=18;
+i=v/r;
+disp("the initial inrush of current (in A) is"); disp(i);
+disp("Part b");
+i1=p/v;
+disp("the steady operating current (in A) is"); disp(i1);
+disp("Part c");
+r1=v/i1;
+disp("the hot resistance (in Ω) of the lamp is"); disp(r1);
\ No newline at end of file |