Ask Your Question
1

Confusion with equations with no explicit solution

asked 2020-11-18 10:18:14 +0200

aylimenz gravatar image

updated 2020-11-18 11:53:45 +0200

Hello,

I started getting into sage a couple of days ago. To do so I’m following the handbook « Computational Mathematics with SageMath » and I came across something that I would like to have more details about but I didn’t find anything in the documentation. So the handbook states that

“In most cases, as soon as the equation or system becomes too complex, no explicit solution can be found:

sage: solve(x^(1/x)==(1/x)^x, x) 
> [(1/x)^x == x^(1/x)]

However, this is not necessarily a limitation! Indeed, a specificity of computer algebra is the ability to manipulate objects defined by equations, and in particular to compute their properties, without solving them explicitly. Even better: in some cases, the equation defining a mathematical object is the best algorithmic representation for it.”

But it doesn’t say what they mean by an equation being “too complex”. And what does it mean for an equation to not have an explicit solution. Plus in some cases we want to have a numerical result (even if it’s an approximation). For exemple I tried finding from what n0 the Tyler series of the exponential function at x0=1 is in the interval [e-10^-3, e+10^-3] i.e.

∀ ε > 10⁻³ , n > n0 ⇒ | vn − e | < ε

vn being equal to the sum of the terms 1 / i! for i ∈ [ 0, n ]. That being the definition of the Taylor series of the exponential function at x0=1 without taking account of the rest.

to do so I wrote this :

sage: k, n, n0, epsilon = var('k, n, n0, epsilon')
sage: assume(n, 'integer')
sage: epsilon = 1e-1

sage: u(n) = 1/factorial(n)

sage: v(n) = sum(u(k), k, 0, n)

sage: n0 = solve(e - v(n) > epsilon, n)
sage: n0

And sage gives out :

> [[e - sum(1/factorial(k), k, 0, n) - 0.1 > 0]]

The documentation says that to get an explicit solution we jut got to set the parameter explicit_solutions to True but I tried it and it doesn't work. Also I'm using the 8.1 version (it's the latest I found on the ubunru packages repository and I tried to download the 9.2 version but the archive was too voluminous (it's 14 GB and I didn't have enough memoiry space to extract it)

Is it possible to get an approximation of the solution in this case I don’t care for the result to be an approximation because I just need the integer part of it anyway.

Please help me I don’t really know if the problem is that the equation is “too complex” or maybe I’m just not using the sum function right.

Thank you in advance.

edit retag flag offensive close merge delete

Comments

1

Your proposed plan is not valid, since you would be using a (Sage-generated) numerical approximation of $e$ when evaluating your function. Thois kind of circular reasoning is generally frowned upon (unless you are building some induction or infinite descent...).

What you might do is to find some function of $x$ and $n$ whose value can be shown to be larger that $\displaystyle\left|\sum_{i=n}^{\infty}\frac{x^j}{j!}\right|$, then solve this function for $n$. This this done in any serious real analysis course , but not exactly trivial.It might help to remember that $\displaystyle\sum_{i=n}^{\infty}\left|\frac{x^j}{j!}\right|\ge\displaystyle\left|\sum_{i=n}^{\infty}\frac{x^j}{j!}\right|$

BTW, numerical solutions of (univariate) equations can be obtained via find_root. Read its online help.

Emmanuel Charpentier gravatar imageEmmanuel Charpentier ( 2020-11-18 13:47:43 +0200 )edit

Thank you for your answer. I haven't thought about taking dirrectly the difference (that is sum_{i=n}^{\infty}\frac{1}{j!}) thank you for pointing that out. But I don't know how to implement that in sage : we can't implement sums that go up to infinity. But maybe with a function of two variables u(n, m) = sum_{i=n}^{\m}\frac{1}{j!} and take the limit of u when m approaches infinity for a certain n. Is there any other possible way?

aylimenz gravatar imageaylimenz ( 2020-11-18 22:46:58 +0200 )edit

1 Answer

Sort by » oldest newest most voted
1

answered 2020-11-18 17:40:42 +0200

dsejas gravatar image

Hello, @aylimenz! This is a very deep question or an easy question, depending on what you are trying to learn from these words. Although I am not entitled to clarify exactly what the authors mean to convey with the text you cited, I can give you some points of view based on my personal experience. I will assume you (or anyone reading this answer) is a beginner, so this will be a long text.

  1. The descriptions "too complex" and "not having an explicit solution" are not specific terms in this context; they are more like intuitive concepts. Basically, an equation has no explicit solution whenever Sage is unable to find a symbolic solution. For example, in this particular case, you can see that Sage has returned the equation itself, which basically is an admission of defeat. With that in mind, an equation is too complex is Sage cannot find an explicit solution.

  2. But there exists another way of understanding "too complex." Consider the relative complexity of the equation in your question, compared to a polynomial equation. From the point of view of a human, this particular equation is more difficult to visualize/analyze/understand/solve. From this point of view, "too complex" can be understood as "too complicated," "too exotic," "way too elaborated," "too strange," "too uncommon." With practice, you will learn to recognize this kind of problems just by sight.

  3. The previous point doesn't mean that Sage in incapable of solving equations more complicated than a polynomial; on the contrary, it can in fact solve extremely complicated equations and system. However, the more exotic your equation is, the more probable is that symbolic algorithm fail to solve it. As an example, consider a fifth-degree polynomial (for which I hope you know there is no explicit formula), inside an absolute, elevated to the sine of a third degree polynomial:

    $$|3x^5 + 2x^4 - 5x^3 + 23x^2 - 15x - 56|^{\sin(63x^3-5x^2+3)}=0.$$

    Although this is an extreme example, it clearly illustrates the point at hand ("too complex"). I believe you will agree that we cannot expect Sage or any other current software to give a meaningful symbolic solution to this one.

  4. When Symbolic algorithms fall short, there are some things you can still try. For example, in the case of the equation on your question, you can try to find a numerical solution, as @Emmanuel Charpentier suggests. The find_root() function takes an equation and the extremes of an interval to search the solution as input arguments. In this case, you can try:

    find_root(x^(1/x)==(1/x)^x, 0, 2)
    

    in order to find a root in the interval $(0,2)$. This will be an approximation (or exact solution if you are lucky), but it is way better than the output of solve(). The interval to find the solution doesn't have to be a very good guess; you can try something more gross, like

    find_root(x^(1/x)==(1/x)^x, 0, 10^4)
    

    (Of course, the worse the interval guess, the harder for the algorithm to find the solution.) It is always a good idea to plot the functions to have a good idea of the interval:

    p = plot(x^(1/x), 0, 5)
    p += plot((1/x)^x, 0, 5)
    p.show()
    

    image description

  5. How do you know if that is the only solution? Why did I used the interval $[0,5]$ to plot? What else can you do in order to obtain additional information about this equation? You should use a combination of mathematical analysis and intuition in order to go further. Of course, Sage can help you with the part of mathematical analysis (by finding derivatives, by plotting functions, etc.), but the intuition is best developed through experience.

  6. As the authors of the book indicate, when a too complex equation is presented, it is generally the case that the equation has a deeper meaning than the solution itself (hence the complexity). So being unable to find an explicit solution is not a problem, because you can do more profound and productive things with that equation than obtaining a simple solution. As in the previous point, obtaining meaningful information and studying the general behavior of a mathematical expression consists basically on doing some mathematical analysis, which Sage can help you with.

I hope this helps!

edit flag offensive delete link more

Comments

Thank you for your answer. So I was confusing between symbolic and approximative sollution: I thought an approximative solution was obtained only by computing the results of the symbolic algorithmes whereas it is done by determining the variation of a function with numerical analysis methodes and the symbolic sollution is obtained by syntaxically manipulating the equation (formally). It's much clearer for me now. Thank you verry much ^^

aylimenz gravatar imageaylimenz ( 2020-11-18 22:47:15 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2020-11-18 10:14:17 +0200

Seen: 876 times

Last updated: Nov 18 '20