Is there a quick analytic way to solve this polynomial?

  • Context: Graduate 
  • Thread starter Thread starter DeanRichards
  • Start date Start date
  • Tags Tags
    Polynomial
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
5 replies · 2K views
DeanRichards
Messages
3
Reaction score
0
ny = x^(n-1) + x^(n-2) + ... + x + 1

for a certain y and n (>10000) with y!=1 and ny > 1.

Is there an analytic way to solve this? Thank you.
 
Physics news on Phys.org
yes, you can interpret it as a sum. that way you can work with it easily.
from that point on you can prove any type of given question whatsoever
 

Attachments

  • Screen Shot 2013-05-23 at 10.26.10 AM.png
    Screen Shot 2013-05-23 at 10.26.10 AM.png
    2.9 KB · Views: 471
thank you for your reply, my question was though how to find x for let's say y = 4 and n = 10000 in the shortest possible amount of time. i know that's not feasible for polynomials of this size in general, but i don't know if there are any special kinds and solution strategies, since this one looks quite simple.
i should have added that i am only interested in real solutions which only exist for n*y >= 1.
 
DeanRichards said:
ny = x^(n-1) + x^(n-2) + ... + x + 1

for a certain y and n (>10000) with y!=1 and ny > 1.

Is there an analytic way to solve this? Thank you.

The sum on the right = (1-xn)/(1-x).

Can you go from there?
 
mathman said:
The sum on the right = (1-xn)/(1-x).

Can you go from there?

incredible. thanks a lot!