document.write( "Question 1178623: A certain disease has an incidence rate of 0.2%. If the false negative rate is 8% and the false positive rate is 2%, compute the probability that a person who tests positive actually has the disease.\r
\n" );
document.write( "
\n" );
document.write( "\n" );
document.write( "Give your answer accurate to at least 3 decimal places \n" );
document.write( "
Algebra.Com's Answer #850323 by CPhill(1987)![]() ![]() You can put this solution on YOUR website! Let's break down this problem using Bayes' Theorem:\r \n" ); document.write( "\n" ); document.write( "1. Define the Events:\r \n" ); document.write( "\n" ); document.write( "D: The person has the disease. \n" ); document.write( ": The person tests positive. \n" ); document.write( "2. Given Probabilities:\r \n" ); document.write( "\n" ); document.write( "P(D) = 0.002 (incidence rate) \n" ); document.write( "P(D') = 1 - 0.002 = 0.998 (probability of not having the disease) \n" ); document.write( "P(-|D) = 0.08 (false negative rate, probability of testing negative given the disease) \n" ); document.write( "P(+|D) = 1 - 0.08 = 0.92 (true positive rate, probability of testing positive given the disease) \n" ); document.write( "P(+|D') = 0.02 (false positive rate, probability of testing positive given no disease) \n" ); document.write( "3. Apply Bayes' Theorem:\r \n" ); document.write( "\n" ); document.write( "We want to find P(D|+), the probability of having the disease given a positive test.\r \n" ); document.write( "\n" ); document.write( "Bayes' Theorem: P(D|+) = [P(+|D) * P(D)] / P(+)\r \n" ); document.write( "\n" ); document.write( "We also need to find P(+), the probability of testing positive:\r \n" ); document.write( "\n" ); document.write( "P(+) = P(+|D) * P(D) + P(+|D') * P(D')\r \n" ); document.write( "\n" ); document.write( "4. Calculate:\r \n" ); document.write( "\n" ); document.write( "P(+|D) * P(D) = 0.92 * 0.002 = 0.00184 \n" ); document.write( "P(+|D') * P(D') = 0.02 * 0.998 = 0.01996 \n" ); document.write( "P(+) = 0.00184 + 0.01996 = 0.0218 \n" ); document.write( "P(D|+) = 0.00184 / 0.0218 ≈ 0.08440367 \n" ); document.write( "5. Round to Three Decimal Places:\r \n" ); document.write( "\n" ); document.write( "P(D|+) ≈ 0.084 \n" ); document.write( "Therefore, the probability that a person who tests positive actually has the disease is approximately 0.084. \n" ); document.write( " |