blob: ff934296534a26536f015c3a08b57b320cb5d26b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Chapter 1: Structure and Bonding
//Problem: 10
clc;
//Declaration of Constant
h = 6.625 * 10 ** -34 // Plank's constant, J.sec
// Variables
v = 6.5 * 10 ** 7 // Velocity of particle, m/s
lamda = 5 * 10 ** -11 // Wavelength, m
// Solution
P = h / lamda
mprintf("The momentum of the particle :%.2e kg m/s",P)
|