blob: 3543a5ed812e499edc371d1edb73c3b82fd861ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clear;
clc;
printf("\nEx2.24\n");
//page no.-69
//given
h=6.62*10^-34;..............//planck's constant in joule-sec
m=1.67*10^-27;..............//mass of proton
c=3*10^8;..................//speed of light in m/s
v=c/20;...................//velocity of proton
lambda=h/(m*v)............//wavelength in m
printf("\nwavelength is 2.643*10^-14 m\n");
|