How to find the number of roots of the function?

  • Thread starter Thread starter hamamo
  • Start date Start date
  • Tags Tags
    Function Roots
AI Thread Summary
To determine the number of roots of a function, the Intermediate Value Theorem can be applied, indicating that if a function changes signs between two points, at least one root exists in that interval. However, the presence of discontinuities complicates this, as demonstrated by the example of f(x)=1/x, which has no roots despite sign changes. For polynomial functions, the number of roots corresponds to the degree of the polynomial, with complex roots being even when real coefficients are present. There is no universal method for finding roots of all functions, and tools like Mathematica can assist but may not always provide definitive answers. Understanding the continuity of the function is crucial for accurately identifying roots.
hamamo
Messages
14
Reaction score
0
hi there
h r u >?
i am a high school physics teacher, and i write many software in vb.net for simulation and ...
the qustion
i use Newton raphson method to find a root of function but
i want to determine the following
1-is the function has a root or not, and then;

2-how can i find the number of roots, and is it complex or is it real

is there are a way or an alogrithems to find that
 
Mathematics news on Phys.org
Hello hamamo!

Since you are using Newton Raphson iterative method to approximate the root of a function, I am going to assume that the functions you are dealing with here are continuous. Given that, by the "Intermediate Value Theorem", if you are given a value of x, say, 5, and the value of that function at x=5 is, suppose, -2, and also given a value of x, eg x=6, and the value of the function there is 1, then you know somewhere between x=5 and x=6 there is a root.

More neatly stated, if f(a) < 0, and f(b) > 0, then f(x) = 0 for some value of x such that a< x < b. So if you have two values of the function, one negative and one positive, you know straight away there has to be at least 1 root in there somewhere.

Finding the number of roots of a particular function can be a very hard task indeed. Do you have a particular type of function you are asking about? For instance, this question is well investigated and easier to answer for Polynomial functions.
 
There is no way to determine the number of roots of a general function- except for the obvious: a polynomial of degree n has exactly n roots (counting multiple roots). If it has real coefficients, then the number of complex (i.e. not real) roots must be even.
 
Gib Z said:
More neatly stated, if f(a) < 0, and f(b) > 0, then f(x) = 0 for some value of x such that a< x < b. So if you have two values of the function, one negative and one positive, you know straight away there has to be at least 1 root in there somewhere.

You don't even know this! Just because f(a)<0 and f(b)>0 does not mean a zero exists between a and b. It means a zero or a discontinuity exists between a and b. For example, consider the function f(x)=1/x. Note that f(-1)=-1 and f(1)=1, but this function of course has no zeros. The problem here is that pesky discontinuity at x=0. If f(a)<0 and f(b)>0 and f is continuous on (a,b) then one can say that a zero does exist in (a,b).
 
D H said:
You don't even know this! Just because f(a)<0 and f(b)>0 does not mean a zero exists between a and b. It means a zero or a discontinuity exists between a and b. For example, consider the function f(x)=1/x. Note that f(-1)=-1 and f(1)=1, but this function of course has no zeros. The problem here is that pesky discontinuity at x=0. If f(a)<0 and f(b)>0 and f is continuous on (a,b) then one can say that a zero does exist in (a,b).

I said earlier in my post I was assuming the function was continuous, as he was using Newtons method on them.
 
thanx a lot
i know that the function should be continuous
and i need a way to do that for any function
any ideas!
 
For any general function, there is no general method.
 
i'm sure mathematica could plot it on pretty much any interval
 
Find the zeros of sin(1/x) in the neighborhood of a small but non-zero value of x.
 
  • #10
ice109 said:
i'm sure mathematica could plot it on pretty much any interval
Plot what?
 
  • #11
D H said:
Find the zeros of sin(1/x) in the neighborhood of a small but non-zero value of x.

he didn't say enumerate them, he said find the number. and I'm pretty there are countably infinite zeroes for your function on that interval.

HallsofIvy said:
Plot what?

his function.
 
  • #12
I think the point of DHs comment was that plotting a function in Mathematica doesn't always give the answer.
 
  • #13
Gib Z said:
I think the point of DHs comment was that plotting a function in Mathematica doesn't always give the answer.

[Histronic]
Quelle horreur!
[/Histronic]
 
Back
Top