Solving \[x^{4}-4x^{3}+10=0\] with a "Binary Search

  • Context: MHB 
  • Thread starter Thread starter Yankel
  • Start date Start date
  • Tags Tags
    Search
Click For Summary
SUMMARY

The discussion focuses on solving the quartic equation \(x^{4}-4x^{3}+10=0\) using numerical methods. Participants suggest various approaches, including binary search, goal seek in Excel, and numerical approximation techniques. Newton's Method is highlighted as a well-known method for finding roots of equations. The rational root theorem is mentioned but deemed ineffective for this specific equation.

PREREQUISITES
  • Understanding of quartic equations and their properties
  • Familiarity with numerical methods for root-finding
  • Basic knowledge of binary search algorithms
  • Experience with tools like Excel for goal-seeking
NEXT STEPS
  • Learn about Newton's Method for root-finding in equations
  • Explore the implementation of binary search in programming languages
  • Investigate numerical approximation techniques for solving polynomial equations
  • Study the limitations and applications of the rational root theorem
USEFUL FOR

Mathematicians, students studying algebra, software developers implementing numerical methods, and anyone interested in solving polynomial equations efficiently.

Yankel
Messages
390
Reaction score
0
Hello all

I am trying to draw a graph of a function. On the way, I wanted to see where the function meet the x axis, so I put y=0. It gave me this:

\[x^{4}-4x^{3}+10=0\]

How do I solve this equation ?

Thanks !

I tried a "binary search" and got really close to the answer, but I guess there must be a better way...
 
Mathematics news on Phys.org
Yankel said:
Hello all

I am trying to draw a graph of a function. On the way, I wanted to see where the function meet the x axis, so I put y=0. It gave me this:

\[x^{4}-4x^{3}+10=0\]

How do I solve this equation ?

Thanks !

I tried a "binary search" and got really close to the answer, but I guess there must be a better way...

It's not easy...
Quartic function - Wikipedia, the free encyclopedia

A binary search or goal seek in excel are probably your best bets with a numerical approximation being next. Honestly this is one of those questions I'd just put into wolfram and use their answer(s)
 
Yankel said:
Hello all

I am trying to draw a graph of a function. On the way, I wanted to see where the function meet the x axis, so I put y=0. It gave me this:

\[x^{4}-4x^{3}+10=0\]

How do I solve this equation ?

Thanks !

I tried a "binary search" and got really close to the answer, but I guess there must be a better way...
You can occasionally use the rational root theorem, but it doesn't work for this equation.

-Dan
 
I understand, thank you !

What numerical approximation methods do we have to solve such equations ?
 
Yankel said:
I understand, thank you !

What numerical approximation methods do we have to solve such equations ?

Perhaps the best known is:

Newton's Method
 

Similar threads

  • · Replies 2 ·
Replies
2
Views
2K
Replies
1
Views
1K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 5 ·
Replies
5
Views
1K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 2 ·
Replies
2
Views
1K
Replies
5
Views
3K
  • · Replies 2 ·
Replies
2
Views
1K