Good afternoon everybody; I am currently working on the decay of a radiactive decay chain; I have to plot the activities of all the members of the chain using Bateman's equations; I will only use two to keep it simple. When I plot each of them on their own, the program works fine
Plot[2.71*10^15*0.000003*Exp[-0.000003*t], {t, 0, 6000}]
Plot[2.71*10^15*0.00538*0.00003*((Exp[-0.000001*t]/(0.00538 - 0.00001)) + (Exp[-0.00538*t]/((0.000001 - 0.00538)))), {t, 0,600}]
But when I try to plot both of them at the same time, theprogram doesn't plot anything.
Plot[{2.71*10^15*0.000003*Exp[-0.000003*t],
2.71*10^15*0.00538*0.00003*((Exp[-0.000001*t]/(0.00538 -0.00001)) + (Exp[-0.00538*t]/((0.000001 - 0.00538))))}, {x, 0, 6000}]
Has anyone had a similar problem or knows how to help me? All ideas are welcome. Thanks for reading.