summaryrefslogtreecommitdiff
path: root/269/CH8/EX8.6/ex6.sce
diff options
context:
space:
mode:
Diffstat (limited to '269/CH8/EX8.6/ex6.sce')
-rw-r--r--269/CH8/EX8.6/ex6.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/269/CH8/EX8.6/ex6.sce b/269/CH8/EX8.6/ex6.sce
new file mode 100644
index 000000000..75a7b4378
--- /dev/null
+++ b/269/CH8/EX8.6/ex6.sce
@@ -0,0 +1,8 @@
+Syms t,s
+disp('given i2(t)=5-3e^(-2t)')
+f=laplace('5-3*%e^(-2*t)',t,s)
+disp(f,"laplace transformed solution is")
+x=s*f
+disp('by final value theorem')
+y=limit(x,s,0)//final value theorem
+disp(y,"i2(inf)=")