diff options
Diffstat (limited to '1271/CH6/EX6.12/example6_12.sce')
-rwxr-xr-x | 1271/CH6/EX6.12/example6_12.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1271/CH6/EX6.12/example6_12.sce b/1271/CH6/EX6.12/example6_12.sce new file mode 100755 index 000000000..32cfe10c0 --- /dev/null +++ b/1271/CH6/EX6.12/example6_12.sce @@ -0,0 +1,8 @@ +clc +// Given that +r = 1.1 // ratio of new number of turns to the initial number of turns +// Sample Problem 12 on page no. 6.24 +printf("\n # PROBLEM 12 # \n") +r_ = (1 / r)^2 +printf("\n Standard formula used \n r_ = (1 / r)^2. \n") +printf("\n Ratio of the new focus length to the initial focus length = %f ",r_) |