summaryrefslogtreecommitdiff
path: root/3718/CH1/EX1.12
diff options
context:
space:
mode:
Diffstat (limited to '3718/CH1/EX1.12')
-rw-r--r--3718/CH1/EX1.12/Ex1_12.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3718/CH1/EX1.12/Ex1_12.sce b/3718/CH1/EX1.12/Ex1_12.sce
new file mode 100644
index 000000000..7a7c785ac
--- /dev/null
+++ b/3718/CH1/EX1.12/Ex1_12.sce
@@ -0,0 +1,14 @@
+//Chapter 1: Structure and Bonding
+//Problem: 12
+clc;
+
+//Declaration of Constant
+h = 6.626 * 10 ** -34 // Plank's constant, J.sec
+
+// Variables
+m = 150 // Weight of ball, gm
+v = 50 // Velocity, m/sec
+
+lamda = h / (m * v * 10 ** -8)
+mprintf("Wavelength of ball :%.3e m\n",lamda)
+mprintf(" Its wavelength is so short that it does not fall in visible range, so we cannot observe it.")