Calculate what number x needs to be, to make y 0 ?

  • Thread starter Thread starter DrWarezz
  • Start date Start date
DrWarezz
Messages
33
Reaction score
0
#m = 0g

Hi all,
Is it possible to calculate what number x needs to be, to make y 0 ?
An experiment shows that:

x = y
0 = +0.16
1 = -0.38
2 = -0.43

Can I work out from that what x needs to be (it can be as many decimals as you want :-p) for y to equal 0?

Thanks alot,
[r.D]
 
Mathematics news on Phys.org
What do you mean by "="??
It most certainly is not "equality" since 1 is NOT equal to -0.38
 
DrWarezz said:
Hi all,
Is it possible to calculate what number x needs to be, to make y 0 ?
An experiment shows that:

x = y
0 = +0.16
1 = -0.38
2 = -0.43

Can I work out from that what x needs to be (it can be as many decimals as you want :-p) for y to equal 0?

Thanks alot,
[r.D]

:rolleyes:
I think he means:
(x, y)
(0, .16)
(1, -.38)
(2, -.43)

find f() where f(x) = y then find the x that makes y = 0
 
Alkatran said:
:rolleyes:
I think he means:
(x, y)
(0, .16)
(1, -.38)
(2, -.43)

find f() where f(x) = y then find the x that makes y = 0
DrWarezz:
Note that there's a lot of f()'s which satisfy your demand.
 
Yeah, sorry. I mean:
When x = 0, y = +0.16
When x = 1, y = -0.38
When x = 2, y = -0.43

And the question is, what must x be, so that y = 0?

Sorry for not being to specific at the start..

Can this be worked out?

Sorry, when you say:
Note that there's a lot of f()'s which satisfy your demand.
What do you mean, by the f() function? :o\

Thanks alot, and sorry for the delay :)
[r.D]
 
DrWarezz said:
Yeah, sorry. I mean:
When x = 0, y = +0.16
When x = 1, y = -0.38
When x = 2, y = -0.43

And the question is, what must x be, so that y = 0?

Sorry for not being to specific at the start..

Can this be worked out?

It can be worked out only if the relationship between x and y is understood.

What experiment is this, and what do x and y refer to in the experiment ?

Without this information, it is impossible to determine what you want.
 
So happens that this little data set is a prefect fit to some function. It is so perfect, that I cannot believe that it is truly data.

What have you done? Have you plotted the numbers? Remember that a picture is worth a 1000 words.
 
What did you fit it to integral ?

Looking at the numbers, I'd guess an exponential decay with a negative floor.

Of course, you can always fit it to a polynomial of second or higher degree...but I guess that's not what you mean.
 
Last edited:
I tried a 2nd order poly. , got R=1. It is a perfect fit,

I did this at home, I am now at work I think the equation was


.245 x^2 -.785x + .16

Here is an interesting way of finding the root in this data set is to iteratively evaluate the expression

x_{n+1} = \frac {.245 x^2 + .16} {.785 x_n}

edit:
Let x0 = .1
 
Last edited:
  • #10
Shouldn't you always be able to exactly fit a second order polynomial to a set of three points ?
 
  • #11
Gokul43201 said:
Shouldn't you always be able to exactly fit a second order polynomial to a set of three points ?
Of Course, you are correct. With the amount of information given that is as good a solution as any.
 
  • #12
:o\ Thanks everyone! lol
I'm kind of confused. I'm just a young student, and I got those numbers from a preliminary experiment.
I figured that by using those numbers, could give a pretty accurate result, without even doing the final.

It appears that you lot have figured it out? Could you simplify it a bit, I don't understand half of the jargon you used :o\ lol.

Thanks a lot for the help :)
[r.D]
 
  • #13
btw; this is an experiment of the concentration of potato chips.. based around osmosis (how boring eh :P).
 
  • #14
So, you've got some data points, 3 in fact. You could try and plot these three points on a graph. The next thing is then to 'guess' the graph of the curve that describes the relationship. You can do this in many ways, and the exact method you choose depends on the situation you're in.

The most common is called 'least squares regression' and this is where you try and draw a straight line that fits 'best' where best is something you can make precise.

There is another method though. Given n points there is a polynomial relation, that is one that looks like:

y=a_0 + a_1 x +a_2x^2 + \ldots a_{n-1}x^{n-1}

that fits exactly through those points.

There are merits for each obviously. Suppose you'd got the data

(-1,1) (0,0.99) (1,1)

then least squares is going to give you something very close to the horizontal straight line y=1 the polynomial will give a parabola that goes off to infinity.

Of course this is an extreme example: in the interval -1 <=x<=1 they're very similar. No one would be silly enough to use such data to predict what the behaviour is like at x = 1000.

Well, I say that but people are that silly.

Just recently someone at Oxford did some studies of data collected over the last 40 years or so about sprinters and extrapolates to predict the woman will win the 100m in less time than the man at the olympics in 150 years time. Very dody science.

More seriously of course was the challenger shuttle disaster when scientists looked at the behaviour of a plastic ring at relatively warm (20deg C) when it behaved perfectly and ignored the fact that at temperatures on the launch pad, near to zero, it became brittle. Feynman I think demonstrated this with a simple experiment on the investigating committee when no one could believe this would be allowed to happen.
 
  • #15
I think the o-rings were made of rubber, which has very poor resilience at freezing temperatures.

Anyways, DrWarezz, the important thing to take away from matt's post is that you can only guess what the number would be at y=0, if you know what the relationship between x and y is expected to be.

If you thing y should decrease linearly with increasing x, you can fit a straight line to the data (as matt suggested - using a least squares fit). On the other hand, you might think that it would make more sense for y to decay exponentially, in which case, you would draw a different curve.

And we can't make a guess for what behavior to expect, because we don't know what x and y are.
 
  • #16
Okay, thanks a lot everyone.
 

Similar threads

Back
Top