What's the relationship between these values?

gravy834

New Member
Joined
Sep 29, 2020
Messages
3
Hi,

I need your help to find the relationship in these values. Hopefully this is the right place for it.

So I'm trying to reverse engineer a formula and am stuck at the final hurdle. I'm determined to crack it. I've listed 10 numbers below (column A) and the associated figure that's returned (column B). I can't work out the relationship between these figures to reverse it. I'm looking for a formula so I could enter a random figure e.g. 0.015 to get it's column B figure.

Random ValueReturns
0.01100.00000000000000
0.0225.00000000000000
0.0311.11111111111110
0.046.25000000000000
0.054.00000000000000
0.062.77777777777778
0.072.04081632653061
0.081.56250000000000
0.091.23456790123457
0.101.00000000000000

The graph for the above looks like this:

1601398518051.png


I imagine this doesn't make much sense so please ask for more details if needs be.

Thanks in advance you Excel legends!
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Welcome to the Board!

I moved this question to the "General Discussion & Other Applications" forum, as it appears to really be a math question and not an Excel equation.

It has been many years since I graduated from college as a math major, but from the looks of it, it looks like your graph is showing a hyperbola.
I would recommend doing a Google search on something like "find the equation of a hyperbola from its points", and see what you find.
 
Upvote 0
To calculate Column B values from the Column A values, use this fomula...

=1/(100*A1*A1)

If you want to calculate the Column A values from the Column B values, use this formula instead...

=1/SQRT(100*B1)
 
Upvote 0
I'm looking for a formula so I could enter a random figure e.g. 0.015 to get it's column B figure

Sounds like an Excel question to me. Of course, many Excel calculations require some math. But that does not make it a non-Excel question, IMHO.

In any case, I would start by putting the data into an XY Scatter chart and experiment with trendlines.

I tried exponential and logarithmic first, before discovering that a power trendline fits almost identically (R^2 = 1). See the image

Display the trendline formula. It is y = 0.01*x^(-2). That is: 0.01 times 1/x^2.

So with x in A2, the formula in B2 is: =0.01 / A2^2


reverse engr.jpg
 
Upvote 0
For the record, what I did was display the calculation of A1*B1 and convert the result to display as a fraction. Once I saw the result, the formula was simple to calculate from there.
 
Upvote 0
Rick you little beauty, that worked perfectly. Annoyingly though I found another fault in my reverse engineered formula. Will post another question about it later if I get stuck.
 
Upvote 0
Just so you know, my first formula is identical to the last formula joeu2004 posted... what joeu2004 did is divide the 100 through and used the shortcut notation A1^2 instead of A1*A1.
 
Upvote 0

Forum statistics

Threads
1,215,265
Messages
6,123,961
Members
449,135
Latest member
jcschafer209

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top