Add periodic roots for complex exponent solver
See original GitHub issueSolving following equation returning only one solution:
var expr = MathS.FromString("e^(i*x) - 0.5");
var sol = MathS.SolveEquation(expr, "x");
But actually this equation has inifinite number of periodic roots (example from WolframAlpha): https://www.wolframalpha.com/input/?i=e^ix+%3D+0.5
Issue Analytics
- State:
- Created 3 years ago
- Reactions:4
- Comments:5 (4 by maintainers)
Top Results From Across the Web
6.5: De Moivre's and the nth Root Theorem
Since De Moivre's Theorem applies to complex numbers written in polar form, ... We add 2kπn to θn in order to obtain the...
Read more >Differential Equations - Complex Roots
In this section we discuss the solution to homogeneous, linear, second order differential equations, ay'' + by' + c = 0, in which...
Read more >Complex Numbers and the Complex Exponential
A complex number. You can add, multiply and divide complex numbers. Here's how: To add (subtract) z = a + bi and ...
Read more >How can I intuitively understand complex exponents?
If you want to calculate the exponential of a complex number, you can do either of the following: (1) use DeMoivre's identity, which...
Read more >Complex Exponential Function 1 - YouTube
Here we take a look at the complex exponential function and describe it as rotation along the unit circle in the complex plane....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Yes, we just need to implement it and handle all corner cases =)
Fixed