blob: 1d0445224f8f006e8a93b9f532aa0d252e0b1c20 (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc
// Given that
v = 1000 // potential through which alpha particle accelerated in V
q = 3.2e-19 // charge on an alpha particle in C
e0 = 8.85e-12 // electric permittivity of space
// Sample Problem 21 on page no. 10.44
printf("\n # PROBLEM 21 # \n")
E = q * v
printf("Standard formula used \n E = q * v.\n")
printf(" Energy gained by alpha particle = %e J.",E)
|