Lambert W function +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Software Libraries (/forum-10.html) +--- Forum: HP Prime Software Library (/forum-15.html) +--- Thread: Lambert W function (/thread-15009.html) |
Lambert W function - Stevetuc - 05-17-2020 03:48 AM This cas program uses fsolve to calc Lambert fn Code: #cas Graph from wikipedia ![]() If x <0 lmb(x) returns both principal and negative branch solutions : lmb(-0.5/e) returns [−2.67834699002,−0.231960952987] lmb(-1/e) returns −0.999999842597 (negative and principal branch converge at -1 when x=-1/e) lmb(1) returns 0.56714329041 lmb(2) returns 0.852605502014 |