How do you find the zeroes of a discrete function?

  • Thread starter Thread starter Frogeyedpeas
  • Start date Start date
  • Tags Tags
    Discrete Function
Frogeyedpeas
Messages
80
Reaction score
0
Would Newton's method or some other method work? Consider the following problem:

find the zeroes of the function: y = 40sin(2x) - floor(40sin(2x))

where Y,X \in R

I don't exactly know how to handle this problem. My best insight so far is that it is only equal to zero whenever 40sin(2x) is an integer. But even then the distribution of these integers is quite random and I honestly don't know any inverse-floor function.
 
Physics news on Phys.org
Frogeyedpeas said:
Would Newton's method or some other method work? Consider the following problem:

find the zeroes of the function: y = 40sin(2x) - floor(40sin(2x))

where Y,X \in R

I don't exactly know how to handle this problem. My best insight so far is that it is only equal to zero whenever 40sin(2x) is an integer. But even then the distribution of these integers is quite random and I honestly don't know any inverse-floor function.
Could you tell us a little more about what class this is from, and what kind of similar problems you may have encountered, and tell us a little about the techniques you're class us covering?
 
ehhh not exactly from a class (sorry), and I don't have any sample problems for this thing either. It just kind of came up. My best guess is to use Newton's formula.

I mean Newton's method
 
Last edited:
So this problem i basically the same thing as frac{40sin(2x)} = 0.
 
w8 nvm I'm good, I got the method
 
So what was the method? Where did the problem come up?
 
Well it turns out if you do an iterated Newton method the number works. To speed things up i broke up the function into separate segments defined as linear. The function appeared out of the context of being given a discrete function how do you make a contonuous analog
 
Back
Top