diff options
Diffstat (limited to '3769/CH23/EX23.16/Ex23_16.sce')
-rw-r--r-- | 3769/CH23/EX23.16/Ex23_16.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3769/CH23/EX23.16/Ex23_16.sce b/3769/CH23/EX23.16/Ex23_16.sce new file mode 100644 index 000000000..bc2fbb2a6 --- /dev/null +++ b/3769/CH23/EX23.16/Ex23_16.sce @@ -0,0 +1,14 @@ +clear +//Given +h=6.62*10**-34 +m=9*10**-31 +v=10**5 +mp=1.67*10**-27 + +//Calculation +l=h/(m*v) +lp=h/(mp*v) + +//Result +printf("\n De-Broglie wavelength of electrons is %0.1f *10**-10 m",l*10**10) +printf("\n De-Broglie wavelength of protons is %0.4f *10**-10 m",lp*10**10) |