diff options
Diffstat (limited to '3673/CH10/EX10.a.16')
-rw-r--r-- | 3673/CH10/EX10.a.16/Example_a_10_16.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3673/CH10/EX10.a.16/Example_a_10_16.sce b/3673/CH10/EX10.a.16/Example_a_10_16.sce new file mode 100644 index 000000000..a45074bb5 --- /dev/null +++ b/3673/CH10/EX10.a.16/Example_a_10_16.sce @@ -0,0 +1,8 @@ +//Example_a_10_16 page no:477
+clc;
+t=2;
+V1=(0.5*((t*(-2)*exp(-2*t))+exp(-2*t)))+(0.2*(((t^2)*(-1)*exp(-t))+(2*(t)*exp(-t))));
+disp(V1,"the value of V1(t) is (in V)");//the value of V1 is wrong in text book, correct calculation is done here
+V2=-0.125*((2*2*exp(-2))-(2^2*exp(-2)))+(0.2*(exp(-2*2)-(2*2*exp(-2*2))));
+disp(V2,"the value of V2(t) is (in V)");
+//calculation of V1 is wrong in textbook
|