summaryrefslogtreecommitdiff
path: root/1904/CH11/EX11.1/11_1.sce
blob: a702b9037c241c79bab01a3315d60eca55673b8e (plain)
1
2
3
4
5
6
7
8
9
10
//To Determine the Approximate value of the component reliability
//Page 598
clc;
clear;
Rsys=0.99 //Minimum Acceptable System Reliabilty
n=15; //Number of identical Components
q=(1-Rsys)/n; //Probability of component failure
Ri=1-q; //Approximate value of the component reliability

printf('The Approximate Value of The component reliability is %g\n',Ri)