summaryrefslogtreecommitdiff
path: root/Working_Examples/293/CH7/EX7.6/eg7_6.sce
diff options
context:
space:
mode:
Diffstat (limited to 'Working_Examples/293/CH7/EX7.6/eg7_6.sce')
-rwxr-xr-xWorking_Examples/293/CH7/EX7.6/eg7_6.sce7
1 files changed, 7 insertions, 0 deletions
diff --git a/Working_Examples/293/CH7/EX7.6/eg7_6.sce b/Working_Examples/293/CH7/EX7.6/eg7_6.sce
new file mode 100755
index 0000000..52b0b90
--- /dev/null
+++ b/Working_Examples/293/CH7/EX7.6/eg7_6.sce
@@ -0,0 +1,7 @@
+//find V*Z1/Z2
+V = complex(45*sqrt(3), -45);
+Z1 = complex(2.5*sqrt(2), 2.5*sqrt(2));
+Z2 = complex(7.5, 7.5*sqrt(3));
+// we have to find V*Z1/Z2
+Z = V*Z1/Z2;
+disp(Z,"V*Z1/Z2 = ") \ No newline at end of file