summaryrefslogtreecommitdiff
path: root/1427/CH19/EX19.15/19_15.sce
blob: 2e56f9e7c415e04e4117e221ffa359685225cd1c (plain)
1
2
3
4
5
6
7
8
9
//ques-19.15
//Calculating uncertainity in velocity of an electron
clc
m=9.11*10^-31;//mass of electron (in kg)
dx=10;//uncertainity in position (in pm)
h=6.6*10^-34;//(in Js)
dv=h/(4*%pi*m*dx*10^-12);
printf("The uncertainity in velocity of the electron is %d m/s.",dv);