Formula for calculating combined screen size of identical monitors

Associate
Joined
29 Dec 2009
Posts
649
Location
Germany
Hey,

I calculated this because I was interested then decided to post the formula I ended up with here in case anybody else could find use for it.

Code:
d2 = sqrt((n * sqrt(d^2 * w^2 / (w^2 + h^2)))^2 + (d^2 * h^2) / (w^2 + h^2))

where:

n = number of horizontal monitors (eg. 2)
d = the diagonal of each monitor (eg. 17)
d2 = the diagonal of all monitors combined
w and h = the aspect ratio (eg. 5 and 4 for 1280*1024 or 16 and 9 for 1920*1080)

In my case it's two 17" 5:4 monitors, so entering that into the formula looks like:

Code:
sqrt((2 * sqrt(17^2 * 5^2 / (5^2 + 4^2)))^2 + (17^2 * 4^2) / (5^2 + 4^2))

Simply entering that into google results in: 28.5947292
So that means 28.6" is the size of my combined display when using two 17" monitors.

Enjoy!
 
Back
Top Bottom