blob: a55d8939751db3b9b31d7d9d7f72830ff5368d35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Ex4_37
clc;
// Given:
a=10*10^7;// rate
t=15;// h
// Soution:
A30=a*(1-(0.5)^(2));// dps
A45=A30*((0.5)^(3));// dps
printf("The residual activity in the sample is %f dps",A45)
|