Compute the conditional probability that it is in fact a dog picture












1












$begingroup$



The computer program CAD takes as input a randomly selected cat or dog picture from the internet and outputs the decision 'cat' or 'dog'. It is known that CAD correctly classified a cat picture with probability $0.6$ while a dog picture is correctly classified with probability $0.7$. The probability that a random picture is a cat picture equals $0.75$. Given that CAD classifies a picture as a cat, compute the conditional probability that it is in fact a dog picture.




I'm quite sure that this exercise is solvable with Bayer's Rule but I'm not able to compute it, because I think the way that I call the probabilities is not fully correct:
$P(T|C)=0.6$ probability that classified in a true way given that is a cat
$P(T|D)=0.7$ probability that classified in a true way given that is a dog
$P(C)=0.75$ probability that is a cat
$P(T^c|C)=?$ probability that classified in a wrong way given that is a cat
$$P(T^c|C)=frac{P(C|T^c)*P(T^c)}{P(C|T^c)*P(T^c)+P(C|T)*P(T)}$$
Where is my mistake? How can I solve it?



Edit:
$$P(Clas. Wrong|Clas. Cat)=frac{P(Clas. Cat|Clas. Wrong)*P(Clas. Wrong)}{P(Clas. Cat|Clas. Wrong)*P(Clas. Wrong)+P(Clas. Cat|Clas. Correct)*P(Clas. Correct)}$$










share|cite|improve this question











$endgroup$

















    1












    $begingroup$



    The computer program CAD takes as input a randomly selected cat or dog picture from the internet and outputs the decision 'cat' or 'dog'. It is known that CAD correctly classified a cat picture with probability $0.6$ while a dog picture is correctly classified with probability $0.7$. The probability that a random picture is a cat picture equals $0.75$. Given that CAD classifies a picture as a cat, compute the conditional probability that it is in fact a dog picture.




    I'm quite sure that this exercise is solvable with Bayer's Rule but I'm not able to compute it, because I think the way that I call the probabilities is not fully correct:
    $P(T|C)=0.6$ probability that classified in a true way given that is a cat
    $P(T|D)=0.7$ probability that classified in a true way given that is a dog
    $P(C)=0.75$ probability that is a cat
    $P(T^c|C)=?$ probability that classified in a wrong way given that is a cat
    $$P(T^c|C)=frac{P(C|T^c)*P(T^c)}{P(C|T^c)*P(T^c)+P(C|T)*P(T)}$$
    Where is my mistake? How can I solve it?



    Edit:
    $$P(Clas. Wrong|Clas. Cat)=frac{P(Clas. Cat|Clas. Wrong)*P(Clas. Wrong)}{P(Clas. Cat|Clas. Wrong)*P(Clas. Wrong)+P(Clas. Cat|Clas. Correct)*P(Clas. Correct)}$$










    share|cite|improve this question











    $endgroup$















      1












      1








      1





      $begingroup$



      The computer program CAD takes as input a randomly selected cat or dog picture from the internet and outputs the decision 'cat' or 'dog'. It is known that CAD correctly classified a cat picture with probability $0.6$ while a dog picture is correctly classified with probability $0.7$. The probability that a random picture is a cat picture equals $0.75$. Given that CAD classifies a picture as a cat, compute the conditional probability that it is in fact a dog picture.




      I'm quite sure that this exercise is solvable with Bayer's Rule but I'm not able to compute it, because I think the way that I call the probabilities is not fully correct:
      $P(T|C)=0.6$ probability that classified in a true way given that is a cat
      $P(T|D)=0.7$ probability that classified in a true way given that is a dog
      $P(C)=0.75$ probability that is a cat
      $P(T^c|C)=?$ probability that classified in a wrong way given that is a cat
      $$P(T^c|C)=frac{P(C|T^c)*P(T^c)}{P(C|T^c)*P(T^c)+P(C|T)*P(T)}$$
      Where is my mistake? How can I solve it?



      Edit:
      $$P(Clas. Wrong|Clas. Cat)=frac{P(Clas. Cat|Clas. Wrong)*P(Clas. Wrong)}{P(Clas. Cat|Clas. Wrong)*P(Clas. Wrong)+P(Clas. Cat|Clas. Correct)*P(Clas. Correct)}$$










      share|cite|improve this question











      $endgroup$





      The computer program CAD takes as input a randomly selected cat or dog picture from the internet and outputs the decision 'cat' or 'dog'. It is known that CAD correctly classified a cat picture with probability $0.6$ while a dog picture is correctly classified with probability $0.7$. The probability that a random picture is a cat picture equals $0.75$. Given that CAD classifies a picture as a cat, compute the conditional probability that it is in fact a dog picture.




      I'm quite sure that this exercise is solvable with Bayer's Rule but I'm not able to compute it, because I think the way that I call the probabilities is not fully correct:
      $P(T|C)=0.6$ probability that classified in a true way given that is a cat
      $P(T|D)=0.7$ probability that classified in a true way given that is a dog
      $P(C)=0.75$ probability that is a cat
      $P(T^c|C)=?$ probability that classified in a wrong way given that is a cat
      $$P(T^c|C)=frac{P(C|T^c)*P(T^c)}{P(C|T^c)*P(T^c)+P(C|T)*P(T)}$$
      Where is my mistake? How can I solve it?



      Edit:
      $$P(Clas. Wrong|Clas. Cat)=frac{P(Clas. Cat|Clas. Wrong)*P(Clas. Wrong)}{P(Clas. Cat|Clas. Wrong)*P(Clas. Wrong)+P(Clas. Cat|Clas. Correct)*P(Clas. Correct)}$$







      probability statistics






      share|cite|improve this question















      share|cite|improve this question













      share|cite|improve this question




      share|cite|improve this question








      edited Jan 26 at 18:24







      Mark Jacon

















      asked Jan 26 at 14:20









      Mark JaconMark Jacon

      1127




      1127






















          2 Answers
          2






          active

          oldest

          votes


















          1












          $begingroup$

          Your mistake seems to be in thinking that the problem asks for (in your notation), $P(T^c|C)$, i.e., the probability that the classification is wrong (event $T^c$) given that the picture is actually a cat (event $C$). The question actually asks for the probability that the classification is wrong given that the picture is classified as a cat. In other words, you were computing the probability of a cat picture being classified as a dog, whereas the problem is about the reverse eerror.



          Once you correct that issue, Bayes's theorem should do the job for you. When I did the calculation, I got a probability of $1/7$ (which you're apparently supposed to round off to $0.14$).






          share|cite|improve this answer









          $endgroup$













          • $begingroup$
            Thank you for the answer, I edited the question, but now I have problems to visualize the probabilities with this notation, can you help me?
            $endgroup$
            – Mark Jacon
            Jan 26 at 18:24






          • 1




            $begingroup$
            The probability that a picture is really a dog but is classified as a cat is $0.25times0.3=0.075$. The probability that a picture is really a cat and is classified as a cat is $0.75times0.6=0.45$. So the total probability of being classified as a cat is $0.075+0.45=0.525$. So the conditional probability of being really a dog, given that it's classified as a cat, is $0.075/0.525$, which reduces to $1/7$.
            $endgroup$
            – Andreas Blass
            Jan 26 at 18:41












          • $begingroup$
            Now I understand where I was wrong in the notation, thank you a lot!
            $endgroup$
            – Mark Jacon
            Jan 26 at 18:59



















          1












          $begingroup$

          Applying Bayes' Theorem



          P( Picuture is CAT/Classified as CAT) $= 0.6times 0.75 = 0.45tag1$



          P( Picture is DOG/Classfied as CAT)$=0.3times 0.25 = 0.075tag2$



          What is asked is P(Classified as CAT/Picture is Dog) $= frac{(2)}{(1)+(2)}$






          share|cite|improve this answer











          $endgroup$













          • $begingroup$
            Thank you but I can't find the correct answer with this formula
            $endgroup$
            – Mark Jacon
            Jan 26 at 17:04






          • 1




            $begingroup$
            Could you tell me what the answer is?
            $endgroup$
            – Satish Ramanathan
            Jan 26 at 17:33










          • $begingroup$
            is one of these $0.14$, $0.38$, $0.08$, $0.25$, $0.4$, $0.3$ and with your method I have $0.105$
            $endgroup$
            – Mark Jacon
            Jan 26 at 17:35











          Your Answer





          StackExchange.ifUsing("editor", function () {
          return StackExchange.using("mathjaxEditing", function () {
          StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
          StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
          });
          });
          }, "mathjax-editing");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "69"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          noCode: true, onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3088303%2fcompute-the-conditional-probability-that-it-is-in-fact-a-dog-picture%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1












          $begingroup$

          Your mistake seems to be in thinking that the problem asks for (in your notation), $P(T^c|C)$, i.e., the probability that the classification is wrong (event $T^c$) given that the picture is actually a cat (event $C$). The question actually asks for the probability that the classification is wrong given that the picture is classified as a cat. In other words, you were computing the probability of a cat picture being classified as a dog, whereas the problem is about the reverse eerror.



          Once you correct that issue, Bayes's theorem should do the job for you. When I did the calculation, I got a probability of $1/7$ (which you're apparently supposed to round off to $0.14$).






          share|cite|improve this answer









          $endgroup$













          • $begingroup$
            Thank you for the answer, I edited the question, but now I have problems to visualize the probabilities with this notation, can you help me?
            $endgroup$
            – Mark Jacon
            Jan 26 at 18:24






          • 1




            $begingroup$
            The probability that a picture is really a dog but is classified as a cat is $0.25times0.3=0.075$. The probability that a picture is really a cat and is classified as a cat is $0.75times0.6=0.45$. So the total probability of being classified as a cat is $0.075+0.45=0.525$. So the conditional probability of being really a dog, given that it's classified as a cat, is $0.075/0.525$, which reduces to $1/7$.
            $endgroup$
            – Andreas Blass
            Jan 26 at 18:41












          • $begingroup$
            Now I understand where I was wrong in the notation, thank you a lot!
            $endgroup$
            – Mark Jacon
            Jan 26 at 18:59
















          1












          $begingroup$

          Your mistake seems to be in thinking that the problem asks for (in your notation), $P(T^c|C)$, i.e., the probability that the classification is wrong (event $T^c$) given that the picture is actually a cat (event $C$). The question actually asks for the probability that the classification is wrong given that the picture is classified as a cat. In other words, you were computing the probability of a cat picture being classified as a dog, whereas the problem is about the reverse eerror.



          Once you correct that issue, Bayes's theorem should do the job for you. When I did the calculation, I got a probability of $1/7$ (which you're apparently supposed to round off to $0.14$).






          share|cite|improve this answer









          $endgroup$













          • $begingroup$
            Thank you for the answer, I edited the question, but now I have problems to visualize the probabilities with this notation, can you help me?
            $endgroup$
            – Mark Jacon
            Jan 26 at 18:24






          • 1




            $begingroup$
            The probability that a picture is really a dog but is classified as a cat is $0.25times0.3=0.075$. The probability that a picture is really a cat and is classified as a cat is $0.75times0.6=0.45$. So the total probability of being classified as a cat is $0.075+0.45=0.525$. So the conditional probability of being really a dog, given that it's classified as a cat, is $0.075/0.525$, which reduces to $1/7$.
            $endgroup$
            – Andreas Blass
            Jan 26 at 18:41












          • $begingroup$
            Now I understand where I was wrong in the notation, thank you a lot!
            $endgroup$
            – Mark Jacon
            Jan 26 at 18:59














          1












          1








          1





          $begingroup$

          Your mistake seems to be in thinking that the problem asks for (in your notation), $P(T^c|C)$, i.e., the probability that the classification is wrong (event $T^c$) given that the picture is actually a cat (event $C$). The question actually asks for the probability that the classification is wrong given that the picture is classified as a cat. In other words, you were computing the probability of a cat picture being classified as a dog, whereas the problem is about the reverse eerror.



          Once you correct that issue, Bayes's theorem should do the job for you. When I did the calculation, I got a probability of $1/7$ (which you're apparently supposed to round off to $0.14$).






          share|cite|improve this answer









          $endgroup$



          Your mistake seems to be in thinking that the problem asks for (in your notation), $P(T^c|C)$, i.e., the probability that the classification is wrong (event $T^c$) given that the picture is actually a cat (event $C$). The question actually asks for the probability that the classification is wrong given that the picture is classified as a cat. In other words, you were computing the probability of a cat picture being classified as a dog, whereas the problem is about the reverse eerror.



          Once you correct that issue, Bayes's theorem should do the job for you. When I did the calculation, I got a probability of $1/7$ (which you're apparently supposed to round off to $0.14$).







          share|cite|improve this answer












          share|cite|improve this answer



          share|cite|improve this answer










          answered Jan 26 at 18:11









          Andreas BlassAndreas Blass

          50.3k452109




          50.3k452109












          • $begingroup$
            Thank you for the answer, I edited the question, but now I have problems to visualize the probabilities with this notation, can you help me?
            $endgroup$
            – Mark Jacon
            Jan 26 at 18:24






          • 1




            $begingroup$
            The probability that a picture is really a dog but is classified as a cat is $0.25times0.3=0.075$. The probability that a picture is really a cat and is classified as a cat is $0.75times0.6=0.45$. So the total probability of being classified as a cat is $0.075+0.45=0.525$. So the conditional probability of being really a dog, given that it's classified as a cat, is $0.075/0.525$, which reduces to $1/7$.
            $endgroup$
            – Andreas Blass
            Jan 26 at 18:41












          • $begingroup$
            Now I understand where I was wrong in the notation, thank you a lot!
            $endgroup$
            – Mark Jacon
            Jan 26 at 18:59


















          • $begingroup$
            Thank you for the answer, I edited the question, but now I have problems to visualize the probabilities with this notation, can you help me?
            $endgroup$
            – Mark Jacon
            Jan 26 at 18:24






          • 1




            $begingroup$
            The probability that a picture is really a dog but is classified as a cat is $0.25times0.3=0.075$. The probability that a picture is really a cat and is classified as a cat is $0.75times0.6=0.45$. So the total probability of being classified as a cat is $0.075+0.45=0.525$. So the conditional probability of being really a dog, given that it's classified as a cat, is $0.075/0.525$, which reduces to $1/7$.
            $endgroup$
            – Andreas Blass
            Jan 26 at 18:41












          • $begingroup$
            Now I understand where I was wrong in the notation, thank you a lot!
            $endgroup$
            – Mark Jacon
            Jan 26 at 18:59
















          $begingroup$
          Thank you for the answer, I edited the question, but now I have problems to visualize the probabilities with this notation, can you help me?
          $endgroup$
          – Mark Jacon
          Jan 26 at 18:24




          $begingroup$
          Thank you for the answer, I edited the question, but now I have problems to visualize the probabilities with this notation, can you help me?
          $endgroup$
          – Mark Jacon
          Jan 26 at 18:24




          1




          1




          $begingroup$
          The probability that a picture is really a dog but is classified as a cat is $0.25times0.3=0.075$. The probability that a picture is really a cat and is classified as a cat is $0.75times0.6=0.45$. So the total probability of being classified as a cat is $0.075+0.45=0.525$. So the conditional probability of being really a dog, given that it's classified as a cat, is $0.075/0.525$, which reduces to $1/7$.
          $endgroup$
          – Andreas Blass
          Jan 26 at 18:41






          $begingroup$
          The probability that a picture is really a dog but is classified as a cat is $0.25times0.3=0.075$. The probability that a picture is really a cat and is classified as a cat is $0.75times0.6=0.45$. So the total probability of being classified as a cat is $0.075+0.45=0.525$. So the conditional probability of being really a dog, given that it's classified as a cat, is $0.075/0.525$, which reduces to $1/7$.
          $endgroup$
          – Andreas Blass
          Jan 26 at 18:41














          $begingroup$
          Now I understand where I was wrong in the notation, thank you a lot!
          $endgroup$
          – Mark Jacon
          Jan 26 at 18:59




          $begingroup$
          Now I understand where I was wrong in the notation, thank you a lot!
          $endgroup$
          – Mark Jacon
          Jan 26 at 18:59











          1












          $begingroup$

          Applying Bayes' Theorem



          P( Picuture is CAT/Classified as CAT) $= 0.6times 0.75 = 0.45tag1$



          P( Picture is DOG/Classfied as CAT)$=0.3times 0.25 = 0.075tag2$



          What is asked is P(Classified as CAT/Picture is Dog) $= frac{(2)}{(1)+(2)}$






          share|cite|improve this answer











          $endgroup$













          • $begingroup$
            Thank you but I can't find the correct answer with this formula
            $endgroup$
            – Mark Jacon
            Jan 26 at 17:04






          • 1




            $begingroup$
            Could you tell me what the answer is?
            $endgroup$
            – Satish Ramanathan
            Jan 26 at 17:33










          • $begingroup$
            is one of these $0.14$, $0.38$, $0.08$, $0.25$, $0.4$, $0.3$ and with your method I have $0.105$
            $endgroup$
            – Mark Jacon
            Jan 26 at 17:35
















          1












          $begingroup$

          Applying Bayes' Theorem



          P( Picuture is CAT/Classified as CAT) $= 0.6times 0.75 = 0.45tag1$



          P( Picture is DOG/Classfied as CAT)$=0.3times 0.25 = 0.075tag2$



          What is asked is P(Classified as CAT/Picture is Dog) $= frac{(2)}{(1)+(2)}$






          share|cite|improve this answer











          $endgroup$













          • $begingroup$
            Thank you but I can't find the correct answer with this formula
            $endgroup$
            – Mark Jacon
            Jan 26 at 17:04






          • 1




            $begingroup$
            Could you tell me what the answer is?
            $endgroup$
            – Satish Ramanathan
            Jan 26 at 17:33










          • $begingroup$
            is one of these $0.14$, $0.38$, $0.08$, $0.25$, $0.4$, $0.3$ and with your method I have $0.105$
            $endgroup$
            – Mark Jacon
            Jan 26 at 17:35














          1












          1








          1





          $begingroup$

          Applying Bayes' Theorem



          P( Picuture is CAT/Classified as CAT) $= 0.6times 0.75 = 0.45tag1$



          P( Picture is DOG/Classfied as CAT)$=0.3times 0.25 = 0.075tag2$



          What is asked is P(Classified as CAT/Picture is Dog) $= frac{(2)}{(1)+(2)}$






          share|cite|improve this answer











          $endgroup$



          Applying Bayes' Theorem



          P( Picuture is CAT/Classified as CAT) $= 0.6times 0.75 = 0.45tag1$



          P( Picture is DOG/Classfied as CAT)$=0.3times 0.25 = 0.075tag2$



          What is asked is P(Classified as CAT/Picture is Dog) $= frac{(2)}{(1)+(2)}$







          share|cite|improve this answer














          share|cite|improve this answer



          share|cite|improve this answer








          edited Jan 27 at 2:20

























          answered Jan 26 at 15:07









          Satish RamanathanSatish Ramanathan

          10k31323




          10k31323












          • $begingroup$
            Thank you but I can't find the correct answer with this formula
            $endgroup$
            – Mark Jacon
            Jan 26 at 17:04






          • 1




            $begingroup$
            Could you tell me what the answer is?
            $endgroup$
            – Satish Ramanathan
            Jan 26 at 17:33










          • $begingroup$
            is one of these $0.14$, $0.38$, $0.08$, $0.25$, $0.4$, $0.3$ and with your method I have $0.105$
            $endgroup$
            – Mark Jacon
            Jan 26 at 17:35


















          • $begingroup$
            Thank you but I can't find the correct answer with this formula
            $endgroup$
            – Mark Jacon
            Jan 26 at 17:04






          • 1




            $begingroup$
            Could you tell me what the answer is?
            $endgroup$
            – Satish Ramanathan
            Jan 26 at 17:33










          • $begingroup$
            is one of these $0.14$, $0.38$, $0.08$, $0.25$, $0.4$, $0.3$ and with your method I have $0.105$
            $endgroup$
            – Mark Jacon
            Jan 26 at 17:35
















          $begingroup$
          Thank you but I can't find the correct answer with this formula
          $endgroup$
          – Mark Jacon
          Jan 26 at 17:04




          $begingroup$
          Thank you but I can't find the correct answer with this formula
          $endgroup$
          – Mark Jacon
          Jan 26 at 17:04




          1




          1




          $begingroup$
          Could you tell me what the answer is?
          $endgroup$
          – Satish Ramanathan
          Jan 26 at 17:33




          $begingroup$
          Could you tell me what the answer is?
          $endgroup$
          – Satish Ramanathan
          Jan 26 at 17:33












          $begingroup$
          is one of these $0.14$, $0.38$, $0.08$, $0.25$, $0.4$, $0.3$ and with your method I have $0.105$
          $endgroup$
          – Mark Jacon
          Jan 26 at 17:35




          $begingroup$
          is one of these $0.14$, $0.38$, $0.08$, $0.25$, $0.4$, $0.3$ and with your method I have $0.105$
          $endgroup$
          – Mark Jacon
          Jan 26 at 17:35


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Mathematics Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          Use MathJax to format equations. MathJax reference.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3088303%2fcompute-the-conditional-probability-that-it-is-in-fact-a-dog-picture%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          MongoDB - Not Authorized To Execute Command

          in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

          How to fix TextFormField cause rebuild widget in Flutter