I'm interested in investigating the following function f[w].
g[z_, b_, r_, a_] := (z - b) / (z - r * I^a) h[z_,b_,r_,a_] := g[z,b,r,a] + g[Conjugate[z],b,r,a] f[w_, b_, r_, a_] := h[I^w,b,r,a] It's a complex function (h[z]), but we constrain z to the unit circle. I would like to solve a system of equations to find a and b for a given r. I believe this would be expressed as such:
Solve[{Im[f[w,b,r,a]]==0, Re[D[f[w,b,r,a],w]]==0} /. {w->0.2, r->0.97}, {a,b}] That does not work, but I'm not sure what can be done about it.
I have been able to create real-value functions related to this problem and then solve for {x,b} given r and a.
In[71]:= Solve[{redf[x,b,r,a]==0,0.01<x<0.5,imf[x,b,r,a]==0,0.01<x<0.5}/.{r->0.97,a->0.25},{x,b}]
{"Solve", "ratnz", ""Solve was unable to solve the system with inexact coefficients. The answer was obtained by solving a corresponding exact system and numericizing the result.""}
Out[71]= {{x->0.249226,b->-0.247524}}
That's close to what I'm looking for. I'm looking for advice working with this problem:
- Is it a good idea to transform all equations to have all variables as real? What's the best way to work with complex equations, and impose constraints such as Abs[x]==0?
- How can I figure out if a closed formula for {a,b} given {w,r} might be attainable?
- It seems possible to at least solve it numerically, what am I missing?
- Is there a better way to deal with the derivative, considering it's a complex function? (More of a theoretical question)


TrigNSolveintended for such problems. Unfortunately the author kind of glitched and it does not work on the relevant system. I'll show how to do so in an actual response once the needed fixes get republished (maybe tomorrow, I hope). $\endgroup$