diff options
Diffstat (limited to '3718/CH1/EX1.6/Ex1_6.sce')
-rw-r--r-- | 3718/CH1/EX1.6/Ex1_6.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3718/CH1/EX1.6/Ex1_6.sce b/3718/CH1/EX1.6/Ex1_6.sce new file mode 100644 index 000000000..7d89b6ca3 --- /dev/null +++ b/3718/CH1/EX1.6/Ex1_6.sce @@ -0,0 +1,14 @@ +//Chapter 1: Structure and Bonding
+//Problem: 6
+clc;
+
+//Declaration of Constant
+h = 6.626 * 10 ** -34 // Plank's constant,in J.sec
+
+// Variable
+lamda = 2 * 10 ** -10 // wavelength,in m
+
+// Solution
+p = h / lamda
+
+mprintf("The momentum of the particle is :%.2e kg m/s",p)
|