Library

Video Player is loading.
 
Current Time 0:00
Duration 6:00
Loaded: 0%
 
x1.00


Back

Games & Quizzes

Training Mode - Typing
Fill the gaps to the Lyric - Best method
Training Mode - Picking
Pick the correct word to fill in the gap
Fill In The Blank
Find the missing words in a sentence Requires 5 vocabulary annotations
Vocabulary Match
Match the words to the definitions Requires 10 vocabulary annotations

You may need to watch a part of the video to unlock quizzes

Don't forget to Sign In to save your points

Challenge Accomplished

PERFECT HITS +NaN
HITS +NaN
LONGEST STREAK +NaN
TOTAL +
- //

We couldn't find definitions for the word you were looking for.
Or maybe the current language is not supported

  • 00:00

    Welcome!

  • 00:01

    In this tutorial I’ll formulate linear integer programming models involving Binary or 0-1

  • 00:07

    variables.

  • 00:09

    Binary variables are employed when there is a yes or no situation.

  • 00:13

    That is, to indicate whether a selection is made or not.

  • 00:17

    For example, suppose we have 4 different projects to consider.

  • 00:20

    We can either select a project, or not select it.

  • 00:24

    So for the first project we can define the decision variable as follows:

  • 00:28

    X1 = 1 if project 1 is selected, and 0 if not selected.

  • 00:33

    We do the same for projects 2, 3, and 4 by defining X2, X3, and X4.

  • 00:39

    Or we can simply write Xi = 1 if project i is selected, and 0 if

  • 00:45

    not selected.

  • 00:46

    where i = 1, 2, 3, and 4.

  • 00:50

    Now, suppose each project has the same lifespan of 3 months (January to March), with corresponding

  • 00:57

    outlays or costs (in thousands of dollars) shown here.

  • 01:01

    Suppose these are the funds available for selected projects each month, and these are

  • 01:06

    the net returns (in thousand dollars) from each project.

  • 01:11

    In this case, our objective is to maximize return which is

  • 01:14

    217X1 + 125X2 + 88X3 + 109X4.

  • 01:21

    Since project outlays are constrained by available funds, we write (for January)

  • 01:28

    58X1+ 44X2+ 26X3+ 23X4 ≤ 120 We do the same for February, and for March.

  • 01:38

    And then complete the model by stating that the decision variables must be binary.

  • 01:43

    Upon solving this model using software like LINDO or Excel Solver, we find that the optimal

  • 01:49

    solution is X1 = 1, X2 = 0, X3 =1, and X4 = 1 with a corresponding

  • 01:58

    net return on 414.

  • 02:01

    That is, to maximize net return, undertake projects 1, 3 and 4 only.

  • 02:06

    Let’s now model a fixed cost problem.

  • 02:10

    Suppose a small company receives an order to supply 1000 units of a product.

  • 02:15

    The company has 3 machines that can be used to produce the product.

  • 02:18

    Here are the variable costs per unit produced from each machine, here are the fixed costs,

  • 02:24

    and here are the machines’ capacities.

  • 02:26

    Our objective is to minimize total costs.

  • 02:30

    We’re going to need 2 types of decision variables in this case.

  • 02:34

    One set for the number of units produced from each machine, and because of the fixed costs,

  • 02:39

    another to indicate whether a machine is being used or not.

  • 02:42

    So for units produced we write Xi = number of units produced on machine i

  • 02:48

    (i = 1, 2, 3) That is, X1 represents units produced on machine

  • 02:51

    1, X2 for machine 2 and X3 for machine 3.

  • 02:56

    Now because fixed costs indicate that the entire cost will be incurred if the corresponding

  • 03:01

    machine is used to produce at all, we define another set of variables.

  • 03:07

    For machine 1 we can write Y1 = 1 if machine 1 is used, 0 otherwise.

  • 03:14

    That is, if X1 > 0, Y1 = 1, otherwise Y1 = 0.

  • 03:21

    For all 3 machines we write Yi = 1 if machine i is used, 0 otherwise …

  • 03:28

    So for the objective function, which is to minimize total costs, we write

  • 03:33

    Minimize 2.39X1 + 1.99X2+ 2.99X3 + 300Y1+250Y2+ 400Y3

  • 03:40

    That is, we multiply variable costs by units produced

  • 03:49

    and multiply the fixed costs by the corresponding 0-1 variables.

  • 03:53

    When Y1 = 1 here, for example, it means that machine 1 is used and the fixed cost of 300

  • 04:00

    will be incurred.

  • 04:01

    And when Y1 = 0, machine 1 is not used, so the fixed cost of 300 will not be incurred.

  • 04:08

    For the constraints, we have an order here to supply 1000 units.

  • 04:12

    So we write X1+X2+X3 = 1000

  • 04:17

    Equality is used here because we have to meet the order or demand placed by the customer.

  • 04:23

    Now, for the capacities.

  • 04:24

    Normally we just write X1 ≤ 400, X2 ≤ 550, and X3 ≤ 600

  • 04:34

    Note that this X1 ≤ 400 constraint simply states that we can produce up to 400 units

  • 04:41

    on machine 1.

  • 04:42

    But if the machine is not used at all, this won’t be possible.

  • 04:46

    So whenever we have fixed costs associated with minimum requirements or maximum capacities,

  • 04:52

    we usually multiply the capacity by the corresponding binary variable.

  • 04:57

    So the correct format is X1 ≤ 400Y1.

  • 05:03

    That is, when Y1 = 1, we can produce up to 400 on machine 1, and when Y1 = 0, 0 units

  • 05:11

    should be produced.

  • 05:12

    We do the same for machine 2, and for machine 3.

  • 05:15

    We can then move the variables to the left side of the constraints.

  • 05:20

    And state that Xis should be non-negative, and the Yis binary.

  • 05:25

    On solving this model, we obtain X1 = 0, X2 = 550, X3 = 450

  • 05:32

    and for the binary variables Y1 = 0, Y2 = 1, and Y3 = 1.

  • 05:38

    Showing that only machines 2 and 3 should be used.

  • 05:42

    And that completes the fixed cost problem.

  • 05:44

    In the next video, I’ll be showing how to formulate some relational constraints using

  • 05:49

    binary variables, including multiple choice, mutually exclusive, co-requisite, and conditional

  • 05:56

    constraints.

  • 05:57

    Thanks for watching.

All

The example sentences of XI in videos (15 in total of 92)

so adverb for preposition or subordinating conjunction units noun, plural produced verb, past participle we personal pronoun write verb, non-3rd person singular present xi proper noun, singular = noun, singular or mass number noun, singular or mass of preposition or subordinating conjunction units noun, plural produced verb, past participle on preposition or subordinating conjunction machine noun, singular or mass i personal pronoun
president proper noun, singular xi proper noun, singular himself personal pronoun made verb, past tense this determiner argument noun, singular or mass at preposition or subordinating conjunction a determiner ceremony noun, singular or mass in preposition or subordinating conjunction 2020 cardinal number , claiming verb, gerund or present participle that preposition or subordinating conjunction the determiner success noun, singular or mass
this determiner raises verb, 3rd person singular present the determiner question noun, singular or mass , as preposition or subordinating conjunction xi proper noun, singular seeks verb, 3rd person singular present a determiner third adjective term noun, singular or mass later adverb this determiner year noun, singular or mass , if preposition or subordinating conjunction the determiner
where wh-adverb you personal pronoun want verb, non-3rd person singular present to to go verb, base form , which wh-determiner is verb, 3rd person singular present xi proper noun, singular plus coordinating conjunction h proper noun, singular , which wh-determiner is verb, 3rd person singular present the determiner same adjective as preposition or subordinating conjunction xi proper noun, singular - plus coordinating conjunction - 1 cardinal number , and coordinating conjunction then adverb what wh-pronoun
del proper noun, singular f proper noun, singular by preposition or subordinating conjunction del proper noun, singular y proper noun, singular being verb, gerund or present participle calculated verb, past participle at preposition or subordinating conjunction xi proper noun, singular , comma noun, singular or mass , yi proper noun, singular , plus coordinating conjunction the determiner order noun, singular or mass of preposition or subordinating conjunction
going verb, gerund or present participle back adverb to to the determiner greek proper noun, singular philosopher noun, singular or mass plato proper noun, singular and coordinating conjunction the determiner confucian proper noun, singular scholar noun, singular or mass zhu proper noun, singular xi proper noun, singular , great adjective minds noun, plural
so adverb , from preposition or subordinating conjunction here adverb , we personal pronoun get verb, non-3rd person singular present f proper noun, singular prime noun, singular or mass of preposition or subordinating conjunction xi proper noun, singular is verb, 3rd person singular present equal adjective to to f proper noun, singular of preposition or subordinating conjunction xi proper noun, singular ,
the determiner communist proper noun, singular party proper noun, singular now adverb had verb, past tense to to repair verb, base form its possessive pronoun public adjective image noun, singular or mass , with preposition or subordinating conjunction xi proper noun, singular jinping proper noun, singular pledging verb, gerund or present participle to to
a determiner 1 cardinal number times noun, plural xi proper noun, singular squared adjective , because preposition or subordinating conjunction i personal pronoun 'll modal have verb, base form xi proper noun, singular here adverb , xi proper noun, singular here adverb , and coordinating conjunction that wh-determiner 's verb, 3rd person singular present what wh-pronoun i personal pronoun will modal
finally adverb , in preposition or subordinating conjunction 1475 cardinal number , edward proper noun, singular agreed verb, past tense to to ransom verb, base form her possessive pronoun back adverb to to louis proper noun, singular xi proper noun, singular for preposition or subordinating conjunction 50,000 cardinal number crowns noun, plural .
after preposition or subordinating conjunction jack proper noun, singular ma proper noun, singular s proper noun, singular comments noun, plural , on preposition or subordinating conjunction november proper noun, singular 13 cardinal number , 2020 cardinal number , president noun, singular or mass xi proper noun, singular would modal go verb, base form ahead adverb and coordinating conjunction personally adverb
way proper noun, singular before preposition or subordinating conjunction he personal pronoun was verb, past tense china proper noun, singular 's possessive ending president proper noun, singular xi proper noun, singular jinping proper noun, singular couldn't proper noun, singular even adverb get verb, base form into preposition or subordinating conjunction the determiner communist proper noun, singular party proper noun, singular
a determiner second adjective but coordinating conjunction also adverb immortality proper noun, singular starring verb, gerund or present participle luo proper noun, singular yun proper noun, singular xi proper noun, singular and coordinating conjunction arthur proper noun, singular chen proper noun, singular getting verb, gerund or present participle an determiner official noun, singular or mass
they personal pronoun know verb, non-3rd person singular present the determiner local adjective police noun, singular or mass because preposition or subordinating conjunction they personal pronoun 've verb, non-3rd person singular present got verb, past participle what wh-pronoun they personal pronoun call verb, non-3rd person singular present one cardinal number xi proper noun, singular or coordinating conjunction connections proper noun, singular
publicly adverb responded verb, past tense to to the determiner rumors noun, plural that preposition or subordinating conjunction he personal pronoun and coordinating conjunction qi proper noun, singular xi proper noun, singular had verb, past tense children noun, plural on preposition or subordinating conjunction the determiner show noun, singular or mass

Use "xi" in a sentence | "xi" example sentences

How to use "xi" in a sentence?

  • Choose the best player for every position, and you'll end up not with a strong XI, but with 11 strong 1's.
    -Johan Cruijff-
  • Steven Gerrard would be the captain of my World XI dream team.
    -Francesco Totti-

Definition and meaning of XI

What does "xi mean?"
xi

/zī/

noun
fourteenth letter of Greek alphabet Ξ.
other
11th letter of the Greek alphabet.