From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 593/CH6/EX6.12/ex6_12.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 593/CH6/EX6.12/ex6_12.sce (limited to '593/CH6/EX6.12/ex6_12.sce') 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 -- cgit