summaryrefslogtreecommitdiff
path: root/162/CH6/EX6.5/example65.sce
diff options
context:
space:
mode:
Diffstat (limited to '162/CH6/EX6.5/example65.sce')
-rwxr-xr-x162/CH6/EX6.5/example65.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/162/CH6/EX6.5/example65.sce b/162/CH6/EX6.5/example65.sce
new file mode 100755
index 000000000..c62c310c9
--- /dev/null
+++ b/162/CH6/EX6.5/example65.sce
@@ -0,0 +1,8 @@
+//Example 6.5
+clc;
+syms z n;
+x1=4*(5^n);
+x2=3*(4^n);
+X1=symsum(x1*(z^-n),n,0,%inf);
+X2=symsum(x2*(z^-n),n,0,%inf);
+X=X1-X2; \ No newline at end of file