I've come across a new argument against mainstream climate science, and it makes some degree of sense to me. It's about applying the math we were taught in our Control Engineering classes to climate.
We've all seen this type of diagrams, right?

The argument goes that our methane emissions must be approximately equal to the derivative of that curve, slightly larger than that because methane in the atmosphere has a half-life of 12 years (that it would equal to the derivative if the half-life was infinite, but actually it is slightly larger than that). So it is visible from the diagram that our methane emissions reached their peak somewhen in 1980s and have been decreasing ever since (the usual explanation given for that is that grass-fed cows emit much more methane than grain-fed cows, and that there are much fewer grass-fed cows and much more grain-fed cows today than in 1980s). Makes sense, right? Well, according to this new argument I found, that's actually not the right inference, but the right inference is that our methane emissions have been approximately constant. That would be the right inference if methane in the atmosphere were a IT1-type system, but it actually isn't.
To understand why, try to derive the transfer function. Now, it might not be obvious how to derive the transfer function directly (or even how to set up the differential equations), but ask yourself: What is the impulse response (the response to the Dirac delta function)? It seems obvious that it is approximately:
g(t)=e^(ln(2)/12*t)
And since for linear time-invariant systems (which methane in the atmosphere approximately is) the transfer function is equal to the Laplace transform of the impulse response, that means the transfer function has to be:

This transfer function cannot be reduced to an IT1-type system. The transfer function of IT1 is:
G(s)=K/(Ti*s*(T*s+1))
So, what is the step-response of the methane in the atmosphere? How would a system described by its transfer function respond to constant methane emissions? Well, type this into Octave or MatLab:
pkg load control;
s=tf('s');
step(1/(s+log(2)/12))
It outputs this:

Which looks like the diagram of methane concentration in the atmosphere over time.
Does this curve converge or does it go to infinity. Well, that be determined using the final value theorem of the Laplace transform. The Laplace transform of the step response is, of course:
S(s)=1/s*G(s)
And the limit of the step response as time approaches infinity is, by the final value theorem:
lim(t->inf, s(t))=lim(s->0,s*S(s))=12/ln(2)
So, given that, according to the diagram, the amount of methane in the atmosphere rose from 1620 units to 1760 units. Therefore, our methane emissions are:
(1760-1620)/(12/ln(2))=8.0867
So it is 8.0867 units every year, and it is constant.
What do you think is wrong with that argument?
I e-mailed my Control Engineering professor [the name edited out] about it to see what he thinks, but, thus far, I received no response.