Post Reply 
HP49-50G Lambert function
10-20-2020, 04:40 PM (This post was last modified: 10-21-2020 12:52 AM by Albert Chan.)
Post: #9
RE: HP49-50G Lambert function
I tried solving simultaneous equation for w = a+b*1j, using Tk! Solver.
Note: w * exp(w) = xr + 1j*xi

xr = exp(a) * (a*cos(b)-b*sin(b))
xi = exp(a) * (a*sin(b)+b*cos(b))

Rectangular form does not converge well, unless we gives it a good guess, for both a and b.
Converted to polar form, convergence is easier, only required guess of a = b = 0

x = w exp(w) = exp(w.real)*abs(w) * exp(1j*(w.imag + phase(w)))

TK Solver Rule Sheet
Code:
c = xr*xr + xi*xi  "abs(x)**2
d = atan2(xi,xr)   "phase(x)
a*a + b*b = c / exp(2*a)
mod(b+atan2(b,a)-d, 2*pi()) = 0
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
HP49-50G Lambert function - Gil - 10-17-2020, 08:42 PM
RE: HP49-50G Lambert function - Gil - 10-18-2020, 10:22 AM
RE: HP49-50G Lambert function W(z) - Gil - 10-19-2020, 09:06 AM
RE: HP49-50G Lambert function - Gil - 10-19-2020, 09:13 AM
RE: HP49-50G Lambert function - Gil - 10-19-2020, 09:40 AM
RE: HP49-50G Lambert function - Gil - 10-20-2020, 08:28 AM
RE: HP49-50G Lambert function - Gil - 10-20-2020, 08:42 AM
RE: HP49-50G Lambert function - Albert Chan - 10-20-2020 04:40 PM
RE: HP49-50G Lambert function - Gil - 10-20-2020, 10:44 PM
RE: HP49-50G Lambert function - Gil - 10-21-2020, 11:44 AM



User(s) browsing this thread: