Specific range of numbers is given, trying to get another number within same range

41 Views Asked by At

I'm trying to calculate the width of an HTML element based on the window size.

Here's what I have. These width values (first value) accurately match with the width the HTML element must be (second value). However I need to get a formula for this to be able to set the width of the HTML correctly according to any possible window size.

window width / HTML element width

  • 1663 = 1916
  • 1221 = 1692
  • 1119 = 1641
  • 1038 = 1602
  • 630 = 1396

  • 1500 = ????

  • 1400 = ????
  • 2000 = ????

I've been staring at this four hours but I just can't wrap my head around it..

Any help would be appreciated.

Thanks in advance, Roel

1

There are 1 best solutions below

3
On

Linear regression gives: $m=0.5030755166$ $c=1078.8117490$ with $R^2=0.9999778405$. This gives the desired values as

  • 630 1396
  • 1500 1833
  • 1400 1783
  • 2000 2085