Math corrected on availability in parallel as per PR comment

This commit is contained in:
minhaz
2019-01-06 19:17:03 +05:30
parent 19d0c6c753
commit d8b17805a4

View File

@@ -566,7 +566,7 @@ For two components with `99.9%` availability, total availability in sequence com
The overall availability increases when two components with availability < 100% are connected in parallel. For two components `Foo` and `Bar` connected in parallel, the total availability comes out to be: The overall availability increases when two components with availability < 100% are connected in parallel. For two components `Foo` and `Bar` connected in parallel, the total availability comes out to be:
``` ```
Availability (Total) = (1 - Availability (Foo)) * (1- Availability (Bar)) Availability (Total) = 1 - (1 - Availability (Foo)) * (1- Availability (Bar))
``` ```
Given that Foo and Bar are independent, it's the probablity atlease one of them to be available at any given moment of time. Given that Foo and Bar are independent, it's the probablity atlease one of them to be available at any given moment of time.