What is the objective function and constraints of this problem?











up vote
1
down vote

favorite












How to solve this problem? This is what I know so far.



Let A be the no. of drivers at the beginning of the year.
Let B be the no. of drivers fired.
Let C be the no. of drivers recruited



Is the objective function 12000A + 2000B + 1000C



Am I on the correct track? What is next?





SBS bus company just won the tender to run premium bus services from the east of New York. The company predicts that they need to have at least the following numbers of bus drivers in coming 5 years: Year 1: 100 drivers; Year 2: 90 drivers; Year 3: 110 drivers; Year 4: 120 drivers and Year 5: 90 drivers.



Recruiting one driver costs the company 1,000 USD which includes pre-deployment training. Firing one driver costs the company 2,000 USD including the severance pay. Each driver on payroll costs the company 12,000 USD per year. The company currently has 60 bus drivers on payroll. Apply linear programming model to develop a formulation to minimize the total recruiting, firing and payroll cost for the bus company. List assumptions you made in the formulation. Note that you are not required to solve the problem.










share|cite|improve this question




























    up vote
    1
    down vote

    favorite












    How to solve this problem? This is what I know so far.



    Let A be the no. of drivers at the beginning of the year.
    Let B be the no. of drivers fired.
    Let C be the no. of drivers recruited



    Is the objective function 12000A + 2000B + 1000C



    Am I on the correct track? What is next?





    SBS bus company just won the tender to run premium bus services from the east of New York. The company predicts that they need to have at least the following numbers of bus drivers in coming 5 years: Year 1: 100 drivers; Year 2: 90 drivers; Year 3: 110 drivers; Year 4: 120 drivers and Year 5: 90 drivers.



    Recruiting one driver costs the company 1,000 USD which includes pre-deployment training. Firing one driver costs the company 2,000 USD including the severance pay. Each driver on payroll costs the company 12,000 USD per year. The company currently has 60 bus drivers on payroll. Apply linear programming model to develop a formulation to minimize the total recruiting, firing and payroll cost for the bus company. List assumptions you made in the formulation. Note that you are not required to solve the problem.










    share|cite|improve this question


























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      How to solve this problem? This is what I know so far.



      Let A be the no. of drivers at the beginning of the year.
      Let B be the no. of drivers fired.
      Let C be the no. of drivers recruited



      Is the objective function 12000A + 2000B + 1000C



      Am I on the correct track? What is next?





      SBS bus company just won the tender to run premium bus services from the east of New York. The company predicts that they need to have at least the following numbers of bus drivers in coming 5 years: Year 1: 100 drivers; Year 2: 90 drivers; Year 3: 110 drivers; Year 4: 120 drivers and Year 5: 90 drivers.



      Recruiting one driver costs the company 1,000 USD which includes pre-deployment training. Firing one driver costs the company 2,000 USD including the severance pay. Each driver on payroll costs the company 12,000 USD per year. The company currently has 60 bus drivers on payroll. Apply linear programming model to develop a formulation to minimize the total recruiting, firing and payroll cost for the bus company. List assumptions you made in the formulation. Note that you are not required to solve the problem.










      share|cite|improve this question















      How to solve this problem? This is what I know so far.



      Let A be the no. of drivers at the beginning of the year.
      Let B be the no. of drivers fired.
      Let C be the no. of drivers recruited



      Is the objective function 12000A + 2000B + 1000C



      Am I on the correct track? What is next?





      SBS bus company just won the tender to run premium bus services from the east of New York. The company predicts that they need to have at least the following numbers of bus drivers in coming 5 years: Year 1: 100 drivers; Year 2: 90 drivers; Year 3: 110 drivers; Year 4: 120 drivers and Year 5: 90 drivers.



      Recruiting one driver costs the company 1,000 USD which includes pre-deployment training. Firing one driver costs the company 2,000 USD including the severance pay. Each driver on payroll costs the company 12,000 USD per year. The company currently has 60 bus drivers on payroll. Apply linear programming model to develop a formulation to minimize the total recruiting, firing and payroll cost for the bus company. List assumptions you made in the formulation. Note that you are not required to solve the problem.







      linear-programming






      share|cite|improve this question















      share|cite|improve this question













      share|cite|improve this question




      share|cite|improve this question








      edited Apr 14 at 10:56









      nbro

      2,38353169




      2,38353169










      asked Sep 18 '17 at 13:03









      Janice

      63




      63






















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          It´s not enough. You have to regard each period (year). The most important thing in (linear) programming is to define the variables:



          $h_i$: Number of drivers, who are hired at the beginning of year $i in {1,2,3,4,5}$



          $f_i$: Number of drivers, who are fired at the end of year $i-1 in {1,2,3,4,5}$



          $d_i=h_i-f_i:$ Difference of hired and fired drivers in year $i in {1,2,3,4,5}$



          $d_1=60$ is the initial number of drivers.



          The constraints for the minimum of drivers in year $1$ is



          $$sumlimits_{i=1}^{1}d_igeq 100$$



          The constraints for the minimum of drivers in year $2$ is



          $$sumlimits_{i=1}^{2}d_igeq 90$$



          And so on.



          And the objective function is



          $$texttt{min}quad 1000cdot sum_{i=1}^5 h_i+2000cdot sum_{i=1}^5 f_i+12000cdot( sum_{k=1}^5 sum_{i=1}^k d_i)$$



          $h_i,f_i in mathbb N$



          If you have any questions feel free to ask.






          share|cite|improve this answer





















            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',
            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%2f2434487%2fwhat-is-the-objective-function-and-constraints-of-this-problem%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            0
            down vote













            It´s not enough. You have to regard each period (year). The most important thing in (linear) programming is to define the variables:



            $h_i$: Number of drivers, who are hired at the beginning of year $i in {1,2,3,4,5}$



            $f_i$: Number of drivers, who are fired at the end of year $i-1 in {1,2,3,4,5}$



            $d_i=h_i-f_i:$ Difference of hired and fired drivers in year $i in {1,2,3,4,5}$



            $d_1=60$ is the initial number of drivers.



            The constraints for the minimum of drivers in year $1$ is



            $$sumlimits_{i=1}^{1}d_igeq 100$$



            The constraints for the minimum of drivers in year $2$ is



            $$sumlimits_{i=1}^{2}d_igeq 90$$



            And so on.



            And the objective function is



            $$texttt{min}quad 1000cdot sum_{i=1}^5 h_i+2000cdot sum_{i=1}^5 f_i+12000cdot( sum_{k=1}^5 sum_{i=1}^k d_i)$$



            $h_i,f_i in mathbb N$



            If you have any questions feel free to ask.






            share|cite|improve this answer

























              up vote
              0
              down vote













              It´s not enough. You have to regard each period (year). The most important thing in (linear) programming is to define the variables:



              $h_i$: Number of drivers, who are hired at the beginning of year $i in {1,2,3,4,5}$



              $f_i$: Number of drivers, who are fired at the end of year $i-1 in {1,2,3,4,5}$



              $d_i=h_i-f_i:$ Difference of hired and fired drivers in year $i in {1,2,3,4,5}$



              $d_1=60$ is the initial number of drivers.



              The constraints for the minimum of drivers in year $1$ is



              $$sumlimits_{i=1}^{1}d_igeq 100$$



              The constraints for the minimum of drivers in year $2$ is



              $$sumlimits_{i=1}^{2}d_igeq 90$$



              And so on.



              And the objective function is



              $$texttt{min}quad 1000cdot sum_{i=1}^5 h_i+2000cdot sum_{i=1}^5 f_i+12000cdot( sum_{k=1}^5 sum_{i=1}^k d_i)$$



              $h_i,f_i in mathbb N$



              If you have any questions feel free to ask.






              share|cite|improve this answer























                up vote
                0
                down vote










                up vote
                0
                down vote









                It´s not enough. You have to regard each period (year). The most important thing in (linear) programming is to define the variables:



                $h_i$: Number of drivers, who are hired at the beginning of year $i in {1,2,3,4,5}$



                $f_i$: Number of drivers, who are fired at the end of year $i-1 in {1,2,3,4,5}$



                $d_i=h_i-f_i:$ Difference of hired and fired drivers in year $i in {1,2,3,4,5}$



                $d_1=60$ is the initial number of drivers.



                The constraints for the minimum of drivers in year $1$ is



                $$sumlimits_{i=1}^{1}d_igeq 100$$



                The constraints for the minimum of drivers in year $2$ is



                $$sumlimits_{i=1}^{2}d_igeq 90$$



                And so on.



                And the objective function is



                $$texttt{min}quad 1000cdot sum_{i=1}^5 h_i+2000cdot sum_{i=1}^5 f_i+12000cdot( sum_{k=1}^5 sum_{i=1}^k d_i)$$



                $h_i,f_i in mathbb N$



                If you have any questions feel free to ask.






                share|cite|improve this answer












                It´s not enough. You have to regard each period (year). The most important thing in (linear) programming is to define the variables:



                $h_i$: Number of drivers, who are hired at the beginning of year $i in {1,2,3,4,5}$



                $f_i$: Number of drivers, who are fired at the end of year $i-1 in {1,2,3,4,5}$



                $d_i=h_i-f_i:$ Difference of hired and fired drivers in year $i in {1,2,3,4,5}$



                $d_1=60$ is the initial number of drivers.



                The constraints for the minimum of drivers in year $1$ is



                $$sumlimits_{i=1}^{1}d_igeq 100$$



                The constraints for the minimum of drivers in year $2$ is



                $$sumlimits_{i=1}^{2}d_igeq 90$$



                And so on.



                And the objective function is



                $$texttt{min}quad 1000cdot sum_{i=1}^5 h_i+2000cdot sum_{i=1}^5 f_i+12000cdot( sum_{k=1}^5 sum_{i=1}^k d_i)$$



                $h_i,f_i in mathbb N$



                If you have any questions feel free to ask.







                share|cite|improve this answer












                share|cite|improve this answer



                share|cite|improve this answer










                answered Sep 18 '17 at 14:48









                callculus

                17.6k31427




                17.6k31427






























                     

                    draft saved


                    draft discarded



















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2434487%2fwhat-is-the-objective-function-and-constraints-of-this-problem%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

                    Berounka

                    Sphinx de Gizeh

                    Different font size/position of beamer's navigation symbols template's content depending on regular/plain...