morePractice

    1. The CEO of AgrerssiveMarketing airline just realized that the airline’s strategic planning unit has put too many flights into the schedule -- there is no way that AM can possibly fly all the flights with the available fleet. The CEO wants to fly as many passengers as possible, no matter what cost the airline will incur. Modify the Fleet Assignment math program to model this.
    2. Here’s notation for some parameters that you may find helpful: let cf be the capacity of an airplane of fleet type f; let pl be the number of passengers that want to fly link l.
    3. Answer is written in white font below; select the next line to see it.
    4. “=1” on each link becomes “≤1; obj function has coefficients min(cf ,pl); the objective changes from min to max


    1. Egalite airline has its main hub in Middletown. Mrs. Over Lee Balanced, the head of the Equal Resource Management department at Egalite requests that the number of Eastbound and Westbound departures from Middletown are equal to reach other. Model this in the mathematical programming formulation of the FA. Answer: Let E⊆S be the airports east of Middletown; let W⊆S be the airports west of Middletown. Add the constraint ∑lf:O(lf)=Middletwon, D(lf)E xlf = ∑lf:O(lf)=Middletwon, D(lf)W xlf .
    2. The Business airline only cares about business passengers. The management believes that business passengers like to arrive to their destination in the morning, and thus wants all Eastbound departures to happen after noon. Model this in the mathematical programming formulation of the FA. Answer: Add the constraint xlf=0 for every Eastbound arc lf (i.e., with D(lf) East of O(lf)) with departure time before noon (i.e., with d(lf)<1200).
    3. Aircraft type f produces nf noise when landing at Quiet city. Your airline is not allowed to produce more than B noise per day at Quiet. Model this in the math program for FA. Answer: Add the constraint ∑nf ∑lf:D(lf)=Quiet xlf ≤ B
    4. Fearing a strike by narrow-body cabin personal, an airline wants to fly as few flights as possible with narrow-body planes. Model this in the mathematical programming formulation of the FA. Answer: Let N⊆F be the narrow body fleet types; modify the objective function, to become ∑f in N ∑l xlf
    5. Let bf denote the number of business seats on a plane of type f. How can you model the requirement that overall, at most 10% of the seats on your planes are business seats? Answer: Let cf denote the total number of seats on a plane of type f; add the constraint ∑f ∑s bfxsf≤ .1*∑f ∑s cfxsf
    6. [This problem mixes FA and probability; there will be no such problem on the exam, but it may be good for practice]
    7. A small airline operates each of its aircraft every day. During the snowstorm season every airport s has probability ps of being closed in the morning; the closures at different airports are independent events. A closure means that all aircraft departing from the closed airport are delayed for the whole day. Model the requirement that the expected number of delayed aircraft should be at most 15.3 . Answer: Add the constraint ∑s ps∑f xsf ≤ 15.3
    8. The number Y of business passengers on a 100-seat plane is distributed as follows: P{Y=5} = P{Y=15} = P{Y=20} = 1/3; the leisure passengers can fill all 100 seats. The leisure and business tickets are sold for 300 and 400 respectively. How many seats should you reserve for the business pax to maximize the expected revenue? Answer: 5.
    9. Answer the previous question assuming Y is a Poisson random variable with mean 20. You may need a calculator or computer for this (such a problem will not appear on the exam). Answer: k: F(k)<1/4<F(k+1)
    10. Can the number of business passengers Y be distributed as follows: P{Y=5} = P{Y=15} = P{Y=20} = 1/2 ? Answer: No, the probabilities have to sum to 1.
    11. You operate a 10-seat business jet and get revenue only from the business pax; the revenue is $200/pax. Assume that the number Y of business passengers who want to take the flight is distributed as p{Y=6}=½, p{Y=10}=½. What is your expected revenue? Answer:1600
    12. You operate a 10-seat business jet and get revenue only from the business pax; the revenue is $100/pax. Assume that the number Y of business passengers who want to take the flight is distributed as p{Y=6}=½, p{Y=10}=½. What is the variance of your revenue?
      1. Answer: 100^2*4=40000
    13. Douglas airline is soon to sell its MD-11 plane. Because of that, Douglas temporarily does not care about maximizing the profit, but instead wants to use the MD-11 as much as possible. That is, the airline wants to use MD-11 on as many links as possible. Model this by modifying the mathematical program for the fleet assignment problem. Answer: The objective function is replaced by maximize ∑l xl,MD-11