I try to shortcut some function approximation and iteration work with asking Mathematica to calculate things best it can. But this involves using an inverse function a pure function, being negligent of where it is ill-defined, which does not go through integrals etc. by default. Diligently so. However, I cannot work around that either.
The immediate problem is with the inverse function result behaving weirdly, see the last lines of the code block. Context follows below.
k=10/3
u[c_,l_]=Log[c]-Log[1+l^(1+k)/(1+k)]
T[z_]=(1-0.84/1.3) * z
lType[n_]=ArgMax[{u[n l-T[n l],l],l>=0},l]
zType[n_] = n lType[n]
Type = InverseFunction[zType]
Type[5345]
Type[2]
Type[4324424]
Let me explain. My problem closely follows a famous article by Emmanuel Saez: Saez, E. (2001). Using elasticities to derive optimal income tax rates. The Review of Economic Studies, 68(1), 205–229. http://elsa.berkeley.edu/~saez/derive.pdf
Basically, I want to get a function implicitly defined (g in his equation 14) where other terms in the formula are functions of income (z). However, importantly, those functions come from a theory that people (who are different w.r.t. an unobserved n) maximize a u[c,l] function subject to the fact that they consume they net income, c[z]=z-T[z], where z=n*l is their earnings, and T is (known) tax schedule. My biggest problem right now is that some of the objects he has as functions of "income" are actually only implicitly defined: what the elasticity of z w.r.t. (1-T'[z]) is at z is defined only by inferring what l would yield that specific income, which has no better solution than asking for the inverse of the l = ArgMax[...] problem, which for general u (and realistic, nonlinear T) is a numerical problem. Mathematica, though slowly, can deal with the inverse for some values, but not all. When it can't, it does not even break, but instead of a number or an error, it yields an object f^[-1][z]. Of course, if this ever happens, it means that this inverse cannot be a part of another generic calculation that simply expect a numerical function (in my case an integral).
I know that I could more cautious, and esp. integrals are tricky in this case, but as an approximation, I would simply assume away part of the domain where this function is not invertible. (Curiously though, it also happens for simply large values, which I see no reason why not to work.) Or I'd, ehm, interpolate over the numerically tricky parts of the inverse. How is this doable? What should I do with the strange inverse?
Thanks for any thoughts, sorry for the long question. I just don't think my code is that much clearer to read.