How do I explain the sunk-cost fallacy to my boss?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0;







up vote
3
down vote

favorite












So, the current task is to write a program to convert data provided by another company from format "A" (their internal format) to format "C" (our internal format).



The original plan was that the other company would provide the data in industry-standard format "B", and we would write a converter from "B" to "C". Four weeks of development later, we've got a program that does that flawlessly. However, it turns out that when faced with real-world data (as opposed to test data), the other company's converter produces a dialect of format "B" that is human-readable, but not easily machine-readable.



I estimate that it would take eight to twelve weeks of trial-and-error programming to adapt the software to this dialect of format "B", with no advantage towards importing anyone else's data (the original reason for using an "A" to "B" to "C" conversion chain). In contrast, writing a direct "A" to "C" converter would take about three weeks.



However, my boss wants to go with adapting the existing converter on the grounds that we've already spent four weeks on it, a classic example of the sunk-cost fallacy. How do I communicate this to him?







share|improve this question















  • 13




    Exactly the way you did to us.
    – Dan Neely
    Mar 9 '16 at 4:56










  • Comments are not for extended discussion; this conversation has been moved to chat.
    – Jane S♦
    Mar 10 '16 at 21:26
















up vote
3
down vote

favorite












So, the current task is to write a program to convert data provided by another company from format "A" (their internal format) to format "C" (our internal format).



The original plan was that the other company would provide the data in industry-standard format "B", and we would write a converter from "B" to "C". Four weeks of development later, we've got a program that does that flawlessly. However, it turns out that when faced with real-world data (as opposed to test data), the other company's converter produces a dialect of format "B" that is human-readable, but not easily machine-readable.



I estimate that it would take eight to twelve weeks of trial-and-error programming to adapt the software to this dialect of format "B", with no advantage towards importing anyone else's data (the original reason for using an "A" to "B" to "C" conversion chain). In contrast, writing a direct "A" to "C" converter would take about three weeks.



However, my boss wants to go with adapting the existing converter on the grounds that we've already spent four weeks on it, a classic example of the sunk-cost fallacy. How do I communicate this to him?







share|improve this question















  • 13




    Exactly the way you did to us.
    – Dan Neely
    Mar 9 '16 at 4:56










  • Comments are not for extended discussion; this conversation has been moved to chat.
    – Jane S♦
    Mar 10 '16 at 21:26












up vote
3
down vote

favorite









up vote
3
down vote

favorite











So, the current task is to write a program to convert data provided by another company from format "A" (their internal format) to format "C" (our internal format).



The original plan was that the other company would provide the data in industry-standard format "B", and we would write a converter from "B" to "C". Four weeks of development later, we've got a program that does that flawlessly. However, it turns out that when faced with real-world data (as opposed to test data), the other company's converter produces a dialect of format "B" that is human-readable, but not easily machine-readable.



I estimate that it would take eight to twelve weeks of trial-and-error programming to adapt the software to this dialect of format "B", with no advantage towards importing anyone else's data (the original reason for using an "A" to "B" to "C" conversion chain). In contrast, writing a direct "A" to "C" converter would take about three weeks.



However, my boss wants to go with adapting the existing converter on the grounds that we've already spent four weeks on it, a classic example of the sunk-cost fallacy. How do I communicate this to him?







share|improve this question











So, the current task is to write a program to convert data provided by another company from format "A" (their internal format) to format "C" (our internal format).



The original plan was that the other company would provide the data in industry-standard format "B", and we would write a converter from "B" to "C". Four weeks of development later, we've got a program that does that flawlessly. However, it turns out that when faced with real-world data (as opposed to test data), the other company's converter produces a dialect of format "B" that is human-readable, but not easily machine-readable.



I estimate that it would take eight to twelve weeks of trial-and-error programming to adapt the software to this dialect of format "B", with no advantage towards importing anyone else's data (the original reason for using an "A" to "B" to "C" conversion chain). In contrast, writing a direct "A" to "C" converter would take about three weeks.



However, my boss wants to go with adapting the existing converter on the grounds that we've already spent four weeks on it, a classic example of the sunk-cost fallacy. How do I communicate this to him?









share|improve this question










share|improve this question




share|improve this question









asked Mar 9 '16 at 4:28









Cost-sinker

242




242







  • 13




    Exactly the way you did to us.
    – Dan Neely
    Mar 9 '16 at 4:56










  • Comments are not for extended discussion; this conversation has been moved to chat.
    – Jane S♦
    Mar 10 '16 at 21:26












  • 13




    Exactly the way you did to us.
    – Dan Neely
    Mar 9 '16 at 4:56










  • Comments are not for extended discussion; this conversation has been moved to chat.
    – Jane S♦
    Mar 10 '16 at 21:26







13




13




Exactly the way you did to us.
– Dan Neely
Mar 9 '16 at 4:56




Exactly the way you did to us.
– Dan Neely
Mar 9 '16 at 4:56












Comments are not for extended discussion; this conversation has been moved to chat.
– Jane S♦
Mar 10 '16 at 21:26




Comments are not for extended discussion; this conversation has been moved to chat.
– Jane S♦
Mar 10 '16 at 21:26










3 Answers
3






active

oldest

votes

















up vote
5
down vote



accepted










Personally, I'd characterize either approach as a separate converter (particularly for a non-technical boss) and just lay out the options.



Boss, I agree that it sucks that we're not getting the data in format B from the other company. On the other hand, we can import data from everyone else now so the effort we put in wasn't wasted.



In order to load the data from the other company, we're going to need to write a custom converter. We can build a converter from the original A format. That will take 3 weeks and is likely to be more reliable because it will only have the one conversion. Or we can build a converter from the modified B format. That will take 8-12 weeks and will likely be less reliable because we're doing two separate conversions. In either case, it's going to be work that is going to be specific to the other company. And in either case we'll reuse whatever code makes sense to reuse from the converter that we've built. I don't see any reason to take potentially 12 weeks when we can accomplish the same business goals with a more reliable solution in 3.



If your boss really wants to go down the 3 month path because that reuses more code, that's his call to make even if it's wrong. But I've yet to see a boss that wants to spend 9 more weeks building something unless they get some benefit from the extra time invested.






share|improve this answer






























    up vote
    3
    down vote













    This is a flaw in the way that humans think in general, so good luck. I think you did a good job of explaining it in the OP. Continue to use numbers and tangibles like "this is going to take 3 weeks to build vs. 2 months to build the other thing" and away from intangibles like "look, it just makes more sense to do it this way". I think the only way you can really get around this flaw is by saying "X is larger than Y, therefore X". Even if your boss objects by saying "we've pushed so many resources into this so far, we can't switch courses now", I think you've got to answer with "yes, I know, but the situation we're in right now is that it's going to take less time to ignore that work".



    I will say that whatever you do, don't actually say "sunk cost fallacy" in the conversation unless you're in the (very rare in the business world) position of having to win an argument over a third party where you don't care about their feelings. It's also a basic aspect of human intellect that nobody likes to be told that they are wrong, and they especially don't like to be told that they are committing a fallacy. Even if they are. Especially when they are. There is an art to explaining stuff like this to people.






    share|improve this answer

















    • 1




      +1 for giving the advice "whatever you do, don't actually say "sunk cost fallacy" in the conversation"
      – Richard U
      Mar 9 '16 at 16:48

















    up vote
    0
    down vote













    If the boss doesn't understand the "sunken cost" fallacy at his age then you won't be able to explain it to him or her.



    I'd suggest to check if you can keep the boss happy and your sanity intact by writing an A to B converter that actually works. (Based on the understanding that you have a working B to C converter, a broken converter translating A to B', and converting B' to B is close to impossible, but converting A to B should be fine).






    share|improve this answer





















      Your Answer







      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "423"
      ;
      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',
      convertImagesToLinks: false,
      noModals: false,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: null,
      bindNavPrevention: true,
      postfix: "",
      noCode: true, onDemand: false,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );








       

      draft saved


      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fworkplace.stackexchange.com%2fquestions%2f63301%2fhow-do-i-explain-the-sunk-cost-fallacy-to-my-boss%23new-answer', 'question_page');

      );

      Post as a guest

























      StackExchange.ready(function ()
      $("#show-editor-button input, #show-editor-button button").click(function ()
      var showEditor = function()
      $("#show-editor-button").hide();
      $("#post-form").removeClass("dno");
      StackExchange.editor.finallyInit();
      ;

      var useFancy = $(this).data('confirm-use-fancy');
      if(useFancy == 'True')
      var popupTitle = $(this).data('confirm-fancy-title');
      var popupBody = $(this).data('confirm-fancy-body');
      var popupAccept = $(this).data('confirm-fancy-accept-button');

      $(this).loadPopup(
      url: '/post/self-answer-popup',
      loaded: function(popup)
      var pTitle = $(popup).find('h2');
      var pBody = $(popup).find('.popup-body');
      var pSubmit = $(popup).find('.popup-submit');

      pTitle.text(popupTitle);
      pBody.html(popupBody);
      pSubmit.val(popupAccept).click(showEditor);

      )
      else
      var confirmText = $(this).data('confirm-text');
      if (confirmText ? confirm(confirmText) : true)
      showEditor();


      );
      );






      3 Answers
      3






      active

      oldest

      votes








      3 Answers
      3






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes








      up vote
      5
      down vote



      accepted










      Personally, I'd characterize either approach as a separate converter (particularly for a non-technical boss) and just lay out the options.



      Boss, I agree that it sucks that we're not getting the data in format B from the other company. On the other hand, we can import data from everyone else now so the effort we put in wasn't wasted.



      In order to load the data from the other company, we're going to need to write a custom converter. We can build a converter from the original A format. That will take 3 weeks and is likely to be more reliable because it will only have the one conversion. Or we can build a converter from the modified B format. That will take 8-12 weeks and will likely be less reliable because we're doing two separate conversions. In either case, it's going to be work that is going to be specific to the other company. And in either case we'll reuse whatever code makes sense to reuse from the converter that we've built. I don't see any reason to take potentially 12 weeks when we can accomplish the same business goals with a more reliable solution in 3.



      If your boss really wants to go down the 3 month path because that reuses more code, that's his call to make even if it's wrong. But I've yet to see a boss that wants to spend 9 more weeks building something unless they get some benefit from the extra time invested.






      share|improve this answer



























        up vote
        5
        down vote



        accepted










        Personally, I'd characterize either approach as a separate converter (particularly for a non-technical boss) and just lay out the options.



        Boss, I agree that it sucks that we're not getting the data in format B from the other company. On the other hand, we can import data from everyone else now so the effort we put in wasn't wasted.



        In order to load the data from the other company, we're going to need to write a custom converter. We can build a converter from the original A format. That will take 3 weeks and is likely to be more reliable because it will only have the one conversion. Or we can build a converter from the modified B format. That will take 8-12 weeks and will likely be less reliable because we're doing two separate conversions. In either case, it's going to be work that is going to be specific to the other company. And in either case we'll reuse whatever code makes sense to reuse from the converter that we've built. I don't see any reason to take potentially 12 weeks when we can accomplish the same business goals with a more reliable solution in 3.



        If your boss really wants to go down the 3 month path because that reuses more code, that's his call to make even if it's wrong. But I've yet to see a boss that wants to spend 9 more weeks building something unless they get some benefit from the extra time invested.






        share|improve this answer

























          up vote
          5
          down vote



          accepted







          up vote
          5
          down vote



          accepted






          Personally, I'd characterize either approach as a separate converter (particularly for a non-technical boss) and just lay out the options.



          Boss, I agree that it sucks that we're not getting the data in format B from the other company. On the other hand, we can import data from everyone else now so the effort we put in wasn't wasted.



          In order to load the data from the other company, we're going to need to write a custom converter. We can build a converter from the original A format. That will take 3 weeks and is likely to be more reliable because it will only have the one conversion. Or we can build a converter from the modified B format. That will take 8-12 weeks and will likely be less reliable because we're doing two separate conversions. In either case, it's going to be work that is going to be specific to the other company. And in either case we'll reuse whatever code makes sense to reuse from the converter that we've built. I don't see any reason to take potentially 12 weeks when we can accomplish the same business goals with a more reliable solution in 3.



          If your boss really wants to go down the 3 month path because that reuses more code, that's his call to make even if it's wrong. But I've yet to see a boss that wants to spend 9 more weeks building something unless they get some benefit from the extra time invested.






          share|improve this answer















          Personally, I'd characterize either approach as a separate converter (particularly for a non-technical boss) and just lay out the options.



          Boss, I agree that it sucks that we're not getting the data in format B from the other company. On the other hand, we can import data from everyone else now so the effort we put in wasn't wasted.



          In order to load the data from the other company, we're going to need to write a custom converter. We can build a converter from the original A format. That will take 3 weeks and is likely to be more reliable because it will only have the one conversion. Or we can build a converter from the modified B format. That will take 8-12 weeks and will likely be less reliable because we're doing two separate conversions. In either case, it's going to be work that is going to be specific to the other company. And in either case we'll reuse whatever code makes sense to reuse from the converter that we've built. I don't see any reason to take potentially 12 weeks when we can accomplish the same business goals with a more reliable solution in 3.



          If your boss really wants to go down the 3 month path because that reuses more code, that's his call to make even if it's wrong. But I've yet to see a boss that wants to spend 9 more weeks building something unless they get some benefit from the extra time invested.







          share|improve this answer















          share|improve this answer



          share|improve this answer








          edited Mar 9 '16 at 13:03









          Kaine

          20614




          20614











          answered Mar 9 '16 at 6:20









          Justin Cave

          34.8k9112136




          34.8k9112136






















              up vote
              3
              down vote













              This is a flaw in the way that humans think in general, so good luck. I think you did a good job of explaining it in the OP. Continue to use numbers and tangibles like "this is going to take 3 weeks to build vs. 2 months to build the other thing" and away from intangibles like "look, it just makes more sense to do it this way". I think the only way you can really get around this flaw is by saying "X is larger than Y, therefore X". Even if your boss objects by saying "we've pushed so many resources into this so far, we can't switch courses now", I think you've got to answer with "yes, I know, but the situation we're in right now is that it's going to take less time to ignore that work".



              I will say that whatever you do, don't actually say "sunk cost fallacy" in the conversation unless you're in the (very rare in the business world) position of having to win an argument over a third party where you don't care about their feelings. It's also a basic aspect of human intellect that nobody likes to be told that they are wrong, and they especially don't like to be told that they are committing a fallacy. Even if they are. Especially when they are. There is an art to explaining stuff like this to people.






              share|improve this answer

















              • 1




                +1 for giving the advice "whatever you do, don't actually say "sunk cost fallacy" in the conversation"
                – Richard U
                Mar 9 '16 at 16:48














              up vote
              3
              down vote













              This is a flaw in the way that humans think in general, so good luck. I think you did a good job of explaining it in the OP. Continue to use numbers and tangibles like "this is going to take 3 weeks to build vs. 2 months to build the other thing" and away from intangibles like "look, it just makes more sense to do it this way". I think the only way you can really get around this flaw is by saying "X is larger than Y, therefore X". Even if your boss objects by saying "we've pushed so many resources into this so far, we can't switch courses now", I think you've got to answer with "yes, I know, but the situation we're in right now is that it's going to take less time to ignore that work".



              I will say that whatever you do, don't actually say "sunk cost fallacy" in the conversation unless you're in the (very rare in the business world) position of having to win an argument over a third party where you don't care about their feelings. It's also a basic aspect of human intellect that nobody likes to be told that they are wrong, and they especially don't like to be told that they are committing a fallacy. Even if they are. Especially when they are. There is an art to explaining stuff like this to people.






              share|improve this answer

















              • 1




                +1 for giving the advice "whatever you do, don't actually say "sunk cost fallacy" in the conversation"
                – Richard U
                Mar 9 '16 at 16:48












              up vote
              3
              down vote










              up vote
              3
              down vote









              This is a flaw in the way that humans think in general, so good luck. I think you did a good job of explaining it in the OP. Continue to use numbers and tangibles like "this is going to take 3 weeks to build vs. 2 months to build the other thing" and away from intangibles like "look, it just makes more sense to do it this way". I think the only way you can really get around this flaw is by saying "X is larger than Y, therefore X". Even if your boss objects by saying "we've pushed so many resources into this so far, we can't switch courses now", I think you've got to answer with "yes, I know, but the situation we're in right now is that it's going to take less time to ignore that work".



              I will say that whatever you do, don't actually say "sunk cost fallacy" in the conversation unless you're in the (very rare in the business world) position of having to win an argument over a third party where you don't care about their feelings. It's also a basic aspect of human intellect that nobody likes to be told that they are wrong, and they especially don't like to be told that they are committing a fallacy. Even if they are. Especially when they are. There is an art to explaining stuff like this to people.






              share|improve this answer













              This is a flaw in the way that humans think in general, so good luck. I think you did a good job of explaining it in the OP. Continue to use numbers and tangibles like "this is going to take 3 weeks to build vs. 2 months to build the other thing" and away from intangibles like "look, it just makes more sense to do it this way". I think the only way you can really get around this flaw is by saying "X is larger than Y, therefore X". Even if your boss objects by saying "we've pushed so many resources into this so far, we can't switch courses now", I think you've got to answer with "yes, I know, but the situation we're in right now is that it's going to take less time to ignore that work".



              I will say that whatever you do, don't actually say "sunk cost fallacy" in the conversation unless you're in the (very rare in the business world) position of having to win an argument over a third party where you don't care about their feelings. It's also a basic aspect of human intellect that nobody likes to be told that they are wrong, and they especially don't like to be told that they are committing a fallacy. Even if they are. Especially when they are. There is an art to explaining stuff like this to people.







              share|improve this answer













              share|improve this answer



              share|improve this answer











              answered Mar 9 '16 at 15:24









              NotVonKaiser

              6,5051533




              6,5051533







              • 1




                +1 for giving the advice "whatever you do, don't actually say "sunk cost fallacy" in the conversation"
                – Richard U
                Mar 9 '16 at 16:48












              • 1




                +1 for giving the advice "whatever you do, don't actually say "sunk cost fallacy" in the conversation"
                – Richard U
                Mar 9 '16 at 16:48







              1




              1




              +1 for giving the advice "whatever you do, don't actually say "sunk cost fallacy" in the conversation"
              – Richard U
              Mar 9 '16 at 16:48




              +1 for giving the advice "whatever you do, don't actually say "sunk cost fallacy" in the conversation"
              – Richard U
              Mar 9 '16 at 16:48










              up vote
              0
              down vote













              If the boss doesn't understand the "sunken cost" fallacy at his age then you won't be able to explain it to him or her.



              I'd suggest to check if you can keep the boss happy and your sanity intact by writing an A to B converter that actually works. (Based on the understanding that you have a working B to C converter, a broken converter translating A to B', and converting B' to B is close to impossible, but converting A to B should be fine).






              share|improve this answer

























                up vote
                0
                down vote













                If the boss doesn't understand the "sunken cost" fallacy at his age then you won't be able to explain it to him or her.



                I'd suggest to check if you can keep the boss happy and your sanity intact by writing an A to B converter that actually works. (Based on the understanding that you have a working B to C converter, a broken converter translating A to B', and converting B' to B is close to impossible, but converting A to B should be fine).






                share|improve this answer























                  up vote
                  0
                  down vote










                  up vote
                  0
                  down vote









                  If the boss doesn't understand the "sunken cost" fallacy at his age then you won't be able to explain it to him or her.



                  I'd suggest to check if you can keep the boss happy and your sanity intact by writing an A to B converter that actually works. (Based on the understanding that you have a working B to C converter, a broken converter translating A to B', and converting B' to B is close to impossible, but converting A to B should be fine).






                  share|improve this answer













                  If the boss doesn't understand the "sunken cost" fallacy at his age then you won't be able to explain it to him or her.



                  I'd suggest to check if you can keep the boss happy and your sanity intact by writing an A to B converter that actually works. (Based on the understanding that you have a working B to C converter, a broken converter translating A to B', and converting B' to B is close to impossible, but converting A to B should be fine).







                  share|improve this answer













                  share|improve this answer



                  share|improve this answer











                  answered Mar 9 '16 at 13:08









                  gnasher729

                  70.8k31131222




                  70.8k31131222






















                       

                      draft saved


                      draft discarded


























                       


                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fworkplace.stackexchange.com%2fquestions%2f63301%2fhow-do-i-explain-the-sunk-cost-fallacy-to-my-boss%23new-answer', 'question_page');

                      );

                      Post as a guest

















































































                      Comments

                      Popular posts from this blog

                      What does second last employer means? [closed]

                      List of Gilmore Girls characters

                      Confectionery