blob: 7d89b6ca3eeca197a4c4c1325cc91c5f78dc5168 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)
|