summaryrefslogtreecommitdiff
path: root/593/CH6/EX6.12
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /593/CH6/EX6.12
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '593/CH6/EX6.12')
-rwxr-xr-x593/CH6/EX6.12/ex6_12.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/593/CH6/EX6.12/ex6_12.sce b/593/CH6/EX6.12/ex6_12.sce
new file mode 100755
index 000000000..3c88830a5
--- /dev/null
+++ b/593/CH6/EX6.12/ex6_12.sce
@@ -0,0 +1,18 @@
+clear;
+//clc();
+
+// Example 6.12
+// Page: 122
+printf("Example-6.12 Page no.-122\n\n");
+
+//***Data***//
+x_b = 0;
+x_a = 1;
+// We have
+//dv_a/dx_a = 3*x_b^(2)+2*x_b+1
+// We have the equation
+// dv_b/dx_a = -(dv_a/dx_a)/(x_b/x_a)
+// So
+// dv_b/dx_a = -(x_a/x_b)*(3*x_b^(2)+2*x_b+1)
+//dv_b_by_dx_a = -x_a*(3*x_b+2+1)/x_b;
+printf("Value of the dv_b/dx_a at x_b = 0 is minus infinity"); \ No newline at end of file