How Can Recurrence Relations Help Solve the Hard Logarithm Problem?

  • Context: Graduate 
  • Thread starter Thread starter courtrigrad
  • Start date Start date
  • Tags Tags
    Hard Logarithms
Click For Summary
SUMMARY

The discussion focuses on establishing a recurrence relation for a polynomial P(n) of degree 2n-2, specifically in the context of solving the hard logarithm problem. Participants highlight the importance of understanding the behavior of derivatives of the function e^(-x^(-2)) and how they relate to the polynomial's coefficients. The polynomial can be expressed in a recursive form, leading to the conclusion that P(n) can be represented as P(n) = 2^n(a(2^n) + b(2^n)^2 + c(2^n)^3 + ... + k(2^n)^(n-1)). This recursive structure is essential for solving the logarithm problem effectively.

PREREQUISITES
  • Understanding of recurrence relations in mathematics
  • Knowledge of polynomial functions and their degrees
  • Familiarity with derivatives and the product rule
  • Basic concepts of logarithms and their properties
NEXT STEPS
  • Study the properties of polynomial degrees and their implications in recurrence relations
  • Learn about the product rule in calculus and its application in differentiation
  • Explore advanced logarithmic functions and their applications in solving complex problems
  • Investigate the relationship between exponential functions and their inverse logarithmic counterparts
USEFUL FOR

Mathematicians, computer scientists, and students studying advanced calculus or algorithm design, particularly those interested in recurrence relations and logarithmic problem-solving techniques.

courtrigrad
Messages
1,236
Reaction score
2
Hello all

I need help with the problem attached below. I tried proof by induction, but cannot prove it. P(n) is a polynomial of degree 2n-2. I have to establish the recurrence relation.

Any help is greatly appreciated!

Thanks
 

Attachments

  • problem.jpg
    problem.jpg
    2.5 KB · Views: 503
  • problem2.jpg
    problem2.jpg
    2.8 KB · Views: 465
Last edited:
Physics news on Phys.org
probably you are trying to prove too much, if all you want is to show that all derivatives of e^(-x^(-2)) vanish at zero, but anyway, notice that every time you take a derivative by the product rule, on one hand you differentiate the original function which multiplies that factor by x^(-3), so the degree of that factor goes down by 3. But when you differentiatiate the other factor, the one with negative powers of x, the pwoer of x goes down by 1.

so when you clear denominators, you have to multiply by the larger negative power, which is x^(-3n) where n is the numbwer of tiomes you did this. On the other factor, when you multiply by this, since those powers only went down on e each time,l you get a polynomial in the top whiose degree goes up 2 each time, and it seems form looking at thes econd erivative that it was degree 2 that time, hence ingeneral is degree 2n-2.

i.e. this is obvious from looking at the first two derivatives. I could be wrong of course.
 
for reaching out for help with this problem! The hard problem concerning logarithms is a common one that many students struggle with. Let's break it down step by step to see if we can find a solution together.

First, let's review what we know about logarithms. A logarithm is the inverse function of an exponential function. In other words, if we have an equation in the form of y = a^x, the logarithm is the exponent that we need to raise a to in order to get y. For example, if we have the equation 8 = 2^x, then the logarithm of 8 with base 2 is 3, because 2^3 = 8.

Now, let's take a look at the given problem. We have a polynomial P(n) of degree 2n-2. In order to establish a recurrence relation, we need to find a pattern in the coefficients of the polynomial. Since the degree is 2n-2, we can assume that the polynomial has the form P(n) = a(2n-2) + b(2n-3) + c(2n-4) + ... + k, where a, b, c, ..., k are constants.

Next, we can use the definition of logarithms to rewrite this polynomial as P(n) = a(2^n)^2 + b(2^n)^3 + c(2^n)^4 + ... + k. Now, we can see that the coefficients of the polynomial are increasing by a factor of 2^n each time. This means that we can express the polynomial as P(n) = a(2^n)^2 + b(2^n)^3 + c(2^n)^4 + ... + k = a(2^n)^2 + 2^n(b(2^n)^2) + 2^n(c(2^n)^3) + ... + 2^n(k(2^n)^n-1).

We can simplify this further by factoring out 2^n, giving us P(n) = 2^n(a(2^n) + b(2^n)^2 + c(2^n)^3 + ... + k(2^n)^n-1). Now, we can see that this polynomial has a recursive structure, where each term is multiplied by 2^n. This means that we can establish a recurrence relation as P(n) = 2^nP(n
 

Similar threads

  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 3 ·
Replies
3
Views
5K
Replies
3
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 12 ·
Replies
12
Views
3K
  • · Replies 19 ·
Replies
19
Views
4K
  • · Replies 6 ·
Replies
6
Views
4K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 18 ·
Replies
18
Views
6K