For the Arrhenius equation in Maple, I have the following code:
A := 0.9e10;
Ea := 350;
R := 0.8314e-2;
lnk := ln(A)-Ea/(T*R);
plot(lnk, T = 1/100 .. 1/400);
that gives me the following plot:
but i am not getting a straight line plot like:
How can I write the code to get a straight line plot, as shown in the last plot (as it appears in the books)?