<?xml version="1.0" encoding="UTF-8"?>
<quiz>
<!-- question: 0  -->
  <question type="category">
    <category>
      <text>$course$/top/Default for MSII/Test #7/L49 - Convert Fractions to Decimals</text>
    </category>
    <info format="html">
      <text></text>
    </info>
    <idnumber></idnumber>
  </question>

<!-- question: 360194  -->
  <question type="formulas">
    <name>
      <text>L49-Convert Fraction to 2-digit repeating Decimal</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Convert \(\frac{{num}}{{den}}\) to a decimal number.&nbsp; (Write the answer using a repeating decimal.)</p><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<br>
<table>
    <tbody>
        <tr>
            <td></td>
            <td style="text-align: right;">0.</td>
            <td>{tenth}</td>
            <td>{hundredth}</td>
            <td>{thousandth}</td>
            <td>{tenThou}</td>
            
        </tr>
        <tr>
            <td>{den}</td>
            <td style="border-top:1px solid black;border-left:2px solid black"><span class="" style="color: rgb(255, 51, 102);">{num}</span>.</td>
            <td style="border-top:1px solid black"><span class="" style="color: rgb(255, 51, 102);">0</span></td>
            <td style="border-top:1px solid black"><span class="" style="color: rgb(51, 102, 255);">0</span></td>
            <td style="border-top:1px solid black"><span class="" style="color: rgb(152, 202, 62);">0</span></td>
            <td><span class="" style="color: rgb(204, 51, 255);">0</span></td>
        </tr>
        <tr>
            <td></td>
            <td style="text-align: left;border-bottom:apx solid black" colspan="2"><u>- {tenDen}</u><br></td>

            <td></td>
            <td style="text-align: left;border-bottom:apx solid black" colspan="2"><br></td>

        </tr>
        <tr>
            <td></td>

            <td colspan="2" style="text-align: right;">{tenthRem}</td>
            <td><span class="" style="color: rgb(51, 102, 255);">0</span></td>
            <td></td>
            <td></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
            <td colspan="2"><u>- {hunDen}</u></td>

            <td></td>
            <td></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
            <td colspan="2" style="text-align: right;">{hunRem}</td>

            <td><span class="" style="color: rgb(152, 202, 62);">0</span></td>
            <td></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
            <td></td>

            <td colspan="2"><u>-{thouDen}</u></td>
            <td><br></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
            <td></td>
            <td colspan="2" style="text-align: right;">{thouRem}</td>
            <td><span class="" style="color: rgb(204, 51, 255);">0</span></td>
        </tr>
</tbody></table>
<table><tbody><tr>
            <td colspan"6"=""> The terminal zeros are not necessary. The question may show extra zeros because it is programmed to divide to the thousandths. You do not need to write the terminal zeros.</td>
        </tr>
    
</tbody></table>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>fraction={[1,11],[2,11],[3,11],[4,11],[5,11],[6,11],[7,11],[8,11],[9,11],[10,11],[1,99],[2,99],[3,99],[4,99],[5,99],[6,99],[7,99],[8,99]};
</text>
</varsrandom>
<varsglobal><text>num=fraction[0];
den=fraction[1];
decimal=num/den;
tenth=floor((num*10)/den);
tenDen=(den*tenth);
tenthRem=(num*10)-(tenDen);

hundredth=floor((tenthRem*10)/den);
hunDen=hundredth*den;
hunRem=(tenthRem*10)-hunDen;

thousandth=floor((hunRem*10)/den);
thouDen=thousandth*den;
thouRem=(hunRem*10)-thouDen;

tenThou=floor((thouRem*10)/den);

ans=((tenth*10)+hundredth)/100;



</text>
</varsglobal>
<answernumbering><text>none</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>ans</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[\(\frac{{num}}{{den}}\) = \(\overline{a}\)<br>The value under the repeat bar should be {_0}<br>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360196  -->
  <question type="formulas">
    <name>
      <text>L49-Convert Fraction to 2-digit repeating Decimal</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Convert \(\frac{{num}}{{den}}\) to a decimal number.&nbsp; (Write the answer using a repeating decimal.)</p><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<br>
<table>
    <tbody>
        <tr>
            <td></td>
            <td style="text-align: right;">0.</td>
            <td>{tenth}</td>
            <td>{hundredth}</td>
            <td>{thousandth}</td>
            <td>{tenThou}</td>
            
        </tr>
        <tr>
            <td>{den}</td>
            <td style="border-top:1px solid black;border-left:2px solid black"><span class="" style="color: rgb(255, 51, 102);">{num}</span>.</td>
            <td style="border-top:1px solid black"><span class="" style="color: rgb(255, 51, 102);">0</span></td>
            <td style="border-top:1px solid black"><span class="" style="color: rgb(51, 102, 255);">0</span></td>
            <td style="border-top:1px solid black"><span class="" style="color: rgb(152, 202, 62);">0</span></td>
            <td><span class="" style="color: rgb(204, 51, 255);">0</span></td>
        </tr>
        <tr>
            <td></td>
            <td style="text-align: left;border-bottom:apx solid black" colspan="2"><u>- {tenDen}</u><br></td>

            <td></td>
            <td style="text-align: left;border-bottom:apx solid black" colspan="2"><br></td>

        </tr>
        <tr>
            <td></td>

            <td colspan="2" style="text-align: right;">{tenthRem}</td>
            <td><span class="" style="color: rgb(51, 102, 255);">0</span></td>
            <td></td>
            <td></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
            <td colspan="2"><u>- {hunDen}</u></td>

            <td></td>
            <td></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
            <td colspan="2" style="text-align: right;">{hunRem}</td>

            <td><span class="" style="color: rgb(152, 202, 62);">0</span></td>
            <td></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
            <td></td>

            <td colspan="2"><u>-{thouDen}</u></td>
            <td><br></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
            <td></td>
            <td colspan="2" style="text-align: right;">{thouRem}</td>
            <td><span class="" style="color: rgb(204, 51, 255);">0</span></td>
        </tr>
</tbody></table>
<table><tbody><tr>
            <td colspan"6"=""> The terminal zeros are not necessary. The question may show extra zeros because it is programmed to divide to the thousandths. You do not need to write the terminal zeros.</td>
        </tr>
    
</tbody></table>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>fraction={[1,11],[2,11],[3,11],[4,11],[5,11],[6,11],[7,11],[8,11],[9,11],[10,11],[1,99],[2,99],[3,99],[4,99],[5,99],[6,99],[7,99],[8,99]};
</text>
</varsrandom>
<varsglobal><text>num=fraction[0];
den=fraction[1];
decimal=num/den;
tenth=floor((num*10)/den);
tenDen=(den*tenth);
tenthRem=(num*10)-(tenDen);

hundredth=floor((tenthRem*10)/den);
hunDen=hundredth*den;
hunRem=(tenthRem*10)-hunDen;

thousandth=floor((hunRem*10)/den);
thouDen=thousandth*den;
thouRem=(hunRem*10)-thouDen;

tenThou=floor((thouRem*10)/den);

ans=((tenth*10)+hundredth)/100;



</text>
</varsglobal>
<answernumbering><text>none</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>ans</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[\(\frac{{num}}{{den}}\) = \(\overline{a}\)<br>The value under the repeat bar should be {_0}<br>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360192  -->
  <question type="formulas">
    <name>
      <text>L49-Convert Fraction to Decimal</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Convert \(\frac{{num}}{{den}}\) to a decimal number.&nbsp; (Round to the nearest hundredth if necessary.)</p><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[The questions says to round to the nearest hundredth, if necessary.&nbsp; &nbsp;Therefore, when necessary, divide to the thousandths place to round the number.<br>
<table>
    <tbody>
        <tr>
            <td></td>
            <td style="text-align: right;">0.</td>
            <td>{tenth}</td>
            <td>{hundredth}</td>
            <td>{thousandth}</td>
            <td></td>
            
        </tr>
        <tr>
            <td>{den}</td>
            <td style="border-top:1px solid black;border-left:2px solid black"><span class="" style="color: rgb(255, 51, 102);">{num}</span>.</td>
            <td style="border-top:1px solid black"><span class="" style="color: rgb(255, 51, 102);">0</span></td>
            <td style="border-top:1px solid black"><span class="" style="color: rgb(51, 102, 255);">0</span></td>
            <td style="border-top:1px solid black"><span class="" style="color: rgb(152, 202, 62);">0</span></td>
            <td><span class="" style="color: rgb(204, 51, 255);">0</span></td>
        </tr>
        <tr>
            <td></td>
            <td style="text-align: left;border-bottom:apx solid black" colspan="2"><u>- {tenDen}</u><br></td>

            <td></td>
            <td style="text-align: left;border-bottom:apx solid black" colspan="2"><br></td>

        </tr>
        <tr>
            <td></td>

            <td colspan="2" style="text-align: right;">{tenthRem}</td>
            <td><span class="" style="color: rgb(51, 102, 255);">0</span></td>
            <td></td>
            <td></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
            <td colspan="2"><u>- {hunDen}</u></td>

            <td></td>
            <td></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
            <td colspan="2" style="text-align: right;">{hunRem}</td>

            <td><span class="" style="color: rgb(152, 202, 62);">0</span></td>
            <td></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
            <td></td>

            <td colspan="2"><u>-{thouDen}</u></td>
            <td><br></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
            <td></td>
            <td colspan="2" style="text-align: right;">{thouRem}</td>
            <td><span class="" style="color: rgb(204, 51, 255);">0</span></td>
        </tr>
</tbody></table>
<table><tbody><tr>
            <td colspan"6"=""> The terminal zeros are not necessary. The question may show extra zeros because it is programmed to divide to the thousandths. You do not need to write the terminal zeros.</td>
        </tr>
    
</tbody></table>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>fraction={[1,2],[1,3],[2,3],[1,4],[2,4],[3,4],[1,5],[2,5],[3,5],[1,6],[2,6],[3,6],[4,6],[5,6],[1,7],[2,7],[3,7],[4,7],[5,7],[6,7],[1,8],[2,8],[3,8],[4,8],[5,8],[6,8],[7,8],[1,10],[2,10],[3,10],[4,10],[5,10],[6,10],[7,10],[8,10],[9,10]};
</text>
</varsrandom>
<varsglobal><text>num=fraction[0];
den=fraction[1];
decimal=num/den;
tenth=floor((num*10)/den);
tenDen=(den*tenth);
tenthRem=(num*10)-(tenDen);

hundredth=floor((tenthRem*10)/den);
hunDen=hundredth*den;
hunRem=(tenthRem*10)-hunDen;

thousandth=floor((hunRem*10)/den);
thouDen=thousandth*den;
thouRem=(hunRem*10)-thouDen;

</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>decimal</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text><![CDATA[_err < 0.01]]></text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360193  -->
  <question type="formulas">
    <name>
      <text>L49-Convert Fraction to repeating Decimal</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Convert \(\frac{{num}}{{den}}\) to a decimal number.&nbsp; (Write the answer using a repeating decimal.)</p><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<br>
<table>
    <tbody>
        <tr>
            <td></td>
            <td style="text-align: right;">0.</td>
            <td>{tenth}</td>
            <td>{hundredth}</td>
            <td>{thousandth}</td>
            <td></td>
            
        </tr>
        <tr>
            <td>{den}</td>
            <td style="border-top:1px solid black;border-left:2px solid black"><span class="" style="color: rgb(255, 51, 102);">{num}</span>.</td>
            <td style="border-top:1px solid black"><span class="" style="color: rgb(255, 51, 102);">0</span></td>
            <td style="border-top:1px solid black"><span class="" style="color: rgb(51, 102, 255);">0</span></td>
            <td style="border-top:1px solid black"><span class="" style="color: rgb(152, 202, 62);">0</span></td>
            <td><span class="" style="color: rgb(204, 51, 255);">0</span></td>
        </tr>
        <tr>
            <td></td>
            <td style="text-align: left;border-bottom:apx solid black" colspan="2"><u>- {tenDen}</u><br></td>

            <td></td>
            <td style="text-align: left;border-bottom:apx solid black" colspan="2"><br></td>

        </tr>
        <tr>
            <td></td>

            <td colspan="2" style="text-align: right;">{tenthRem}</td>
            <td><span class="" style="color: rgb(51, 102, 255);">0</span></td>
            <td></td>
            <td></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
            <td colspan="2"><u>- {hunDen}</u></td>

            <td></td>
            <td></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
            <td colspan="2" style="text-align: right;">{hunRem}</td>

            <td><span class="" style="color: rgb(152, 202, 62);">0</span></td>
            <td></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
            <td></td>

            <td colspan="2"><u>-{thouDen}</u></td>
            <td><br></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
            <td></td>
            <td colspan="2" style="text-align: right;">{thouRem}</td>
            <td><span class="" style="color: rgb(204, 51, 255);">0</span></td>
        </tr>
</tbody></table>
<table><tbody><tr>
            <td colspan"6"=""> The terminal zeros are not necessary. The question may show extra zeros because it is programmed to divide to the thousandths. You do not need to write the terminal zeros.</td>
        </tr>
    
</tbody></table>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>fraction={[1,3],[2,3],[1,9],[2,9],[3,9],[4,9],[5,9],[6,9],[7,9],[8,9]};
</text>
</varsrandom>
<varsglobal><text><![CDATA[num=fraction[0];
den=fraction[1];
decimal=num/den;
tenth=floor((num*10)/den);
tenDen=(den*tenth);
tenthRem=(num*10)-(tenDen);

hundredth=floor((tenthRem*10)/den);
hunDen=hundredth*den;
hunRem=(tenthRem*10)-hunDen;

thousandth=floor((hunRem*10)/den);
thouDen=thousandth*den;
thouRem=(hunRem*10)-thouDen;

choice=["a","b","c","d","e","f","g","h","i"];

]]></text>
</varsglobal>
<answernumbering><text>none</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>tenth-1</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<table>
    <tbody>
        <tr>
            <td>(a.) \(\overline{1}\)</td>
            <td>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</td>
            <td>(b.) \(\overline{2}\)</td>
            <td>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>(c.) \(\overline{3}\)</td>
        </tr><tr>
            <td>(d.) \(\overline{4}\)</td>
            <td></td>
            <td>(e.) \(\overline{5}\)</td>
            <td></td>
            <td>(f.) \(\overline{6}\)</td>
        </tr>
        <tr>
            <td>(g.) \(\overline{7}\)</td>
            <td></td>
            <td>(h.) \(\overline{8}\)</td>
            <td></td>
            <td>(i.) \(\overline{9}\)</td>
        </tr>
    </tbody>
</table><br>\(\frac{{num}}{{den}}\) = {_0:choice:MCE}<br>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360191  -->
  <question type="formulas">
    <name>
      <text>L49-Convert Mixed Number to Decimal Number</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Convert {whole}\(\frac{{num}}{{den}}\) to a decimal number.&nbsp; (Round to the nearest hundredth if necessary.)</p><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[The questions says to round to the nearest hundredth, if necessary.&nbsp; &nbsp;Therefore, when necessary, divide to the thousandths place to round the number.<br><h4><strong>
1.&nbsp; To calculate the decimal part of the answer divide {num}&nbsp;÷ {den}.</strong></h4><div class="editor-indent" style="margin-left: 30px;"></div><table>
    <tbody>
        <tr>
            <td></td>
            <td style="text-align: right;">0.</td>
            <td>{tenth}</td>
            <td>{hundredth}</td>
            <td>{thousandth}</td>
            <td></td>
            
        </tr>
        <tr>
            <td>{den}</td>
            <td style="border-top:1px solid black;border-left:2px solid black"><span class="" style="color: rgb(255, 51, 102);">{num}</span>.</td>
            <td style="border-top:1px solid black"><span class="" style="color: rgb(255, 51, 102);">0</span></td>
            <td style="border-top:1px solid black"><span class="" style="color: rgb(51, 102, 255);">0</span></td>
            <td style="border-top:1px solid black"><span class="" style="color: rgb(152, 202, 62);">0</span></td>
            <td><span class="" style="color: rgb(204, 51, 255);">0</span></td>
        </tr>
        <tr>
            <td></td>
            <td style="text-align: left;border-bottom:apx solid black" colspan="2"><u>- {tenDen}</u><br></td>

            <td></td>
            <td style="text-align: left;border-bottom:apx solid black" colspan="2"><br></td>

        </tr>
        <tr>
            <td></td>

            <td colspan="2" style="text-align: right;">{tenthRem}</td>
            <td><span class="" style="color: rgb(51, 102, 255);">0</span></td>
            <td></td>
            <td></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
            <td colspan="2"><u>- {hunDen}</u></td>

            <td></td>
            <td></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
            <td colspan="2" style="text-align: right;">{hunRem}</td>

            <td><span class="" style="color: rgb(152, 202, 62);">0</span></td>
            <td></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
            <td></td>

            <td colspan="2"><u>-{thouDen}</u></td>
            <td><br></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
            <td></td>
            <td colspan="2" style="text-align: right;">{thouRem}</td>
            <td><span class="" style="color: rgb(204, 51, 255);">0</span></td>
        </tr>
</tbody></table>
<table><tbody><tr>
            <td colspan"6"=""> The terminal zeros are not necessary. The question may show extra zeros because it is programmed to divide to the thousandths. You do not need to write the terminal zeros.</td>
        </tr>
    
</tbody></table><h4><strong>2.&nbsp; Write the whole number ({whole}) to the left of the decimal.</strong></h4><h3><span><strong><br></strong></span></h3><h3><span><strong>The answer is {decimal}</strong></span></h3><br>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>fraction={[1,2],[1,3],[2,3],[1,4],[2,4],[3,4],[1,5],[2,5],[3,5],[1,6],[2,6],[3,6],[4,6],[5,6],[1,7],[2,7],[3,7],[4,7],[5,7],[6,7],[1,8],[2,8],[3,8],[4,8],[5,8],[6,8],[7,8],[1,10],[2,10],[3,10],[4,10],[5,10],[6,10],[7,10],[8,10],[9,10]};
whole={1:100:1};
</text>
</varsrandom>
<varsglobal><text>fraction=[7,10];
num=fraction[0];
den=fraction[1];
decimal=whole+(num/den);
tenth=floor((num*10)/den);
tenDen=(den*tenth);
tenthRem=(num*10)-(tenDen);

hundredth=floor((tenthRem*10)/den);
hunDen=hundredth*den;
hunRem=(tenthRem*10)-hunDen;

thousandth=floor((hunRem*10)/den);
thouDen=thousandth*den;
thouRem=(hunRem*10)-thouDen;

</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>decimal</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text><![CDATA[_err < 0.01]]></text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 0  -->
  <question type="category">
    <category>
      <text>$course$/top/Default for MSII/Test #7/L51 - What is Percent? </text>
    </category>
    <info format="html">
      <text></text>
    </info>
    <idnumber></idnumber>
  </question>

<!-- question: 360459  -->
  <question type="formulas">
    <name>
      <text>L51-write decimal as percent</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Write {decimal} as a percent.</p><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 50;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">{decimal} means {=decimal*100} hundredths.&nbsp;&nbsp;</p><p dir="ltr" style="text-align: left;">Percent means out of 100</p><p dir="ltr" style="text-align: left;">{decimal} = {percent} %</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>percent={1:99:1};
</text>
</varsrandom>
<varsglobal><text>decimal=percent/100;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>percent</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">(Do not type the percent sign)</p><p dir="ltr" style="text-align: left;">{_0}%</p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360460  -->
  <question type="formulas">
    <name>
      <text>L51-write decimal as percent</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Write {decimal} as a percent.</p><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 50;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">{decimal} means {=decimal*100} hundredths.&nbsp;&nbsp;</p><p dir="ltr" style="text-align: left;">Percent means out of 100</p><p dir="ltr" style="text-align: left;">{decimal} = {percent} %</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>percent={1:99:1};
</text>
</varsrandom>
<varsglobal><text>decimal=percent/100;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>percent</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">(Do not type the percent sign)</p><p dir="ltr" style="text-align: left;">{_0}%</p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360461  -->
  <question type="formulas">
    <name>
      <text>L51-write fraction as percent</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Write \(\frac{{rednum}}{{redden}}\) as a percent.</p><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 50;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Write \(\frac{{rednum}}{{redden}}\) as a fraction with a 100 in the denominator.</p><p dir="ltr" style="text-align: left;">\(\frac{{rednum}x{GCF}}{{redden}x{GCF}}\) =&nbsp;\(\frac{{num}}{{den}}\)<br></p><p dir="ltr" style="text-align: left;"><span style="font-size: 0.9375rem;">Percent means out of 100</span><br></p><p dir="ltr" style="text-align: left;">\(\frac{{num}}{{den}}\) = {percent} %</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>percent={1:99:1};
</text>
</varsrandom>
<varsglobal><text>decimal=percent/100;
num=percent;
den=100;
GCF=gcd(num,den);
rednum=num/GCF;
redden=den/GCF;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>percent</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">(Do not type the percent sign)</p><p dir="ltr" style="text-align: left;">{_0}%</p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360462  -->
  <question type="formulas">
    <name>
      <text>L51-write percent as decimal</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Write {percent} % as a decimal number.</p><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 50;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">{percent}% means {percent} out of 100</p><p dir="ltr" style="text-align: left;">{percent}% =&nbsp;<span style="font-size: 0.9375rem;">{decimal}</span></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>percent={1:99:1};
</text>
</varsrandom>
<varsglobal><text>decimal=percent/100;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>decimal</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360463  -->
  <question type="formulas">
    <name>
      <text>L51-write percent as fraction in simplest form</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Write {percent} % as a fraction in simplest form.</p><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 50;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">{percent}% means {percent} out of 100</p><p dir="ltr" style="text-align: left;">\(\frac{{percent}}{100}\)</p><p dir="ltr" style="text-align: left;">Divide the numerator and the denominator by the GCF.</p><p dir="ltr" style="text-align: left;">The GCF is {GCF}</p><p dir="ltr" style="text-align: left;"></p><p dir="ltr">\(\frac{{percent}÷{GCF}}{100÷{GCF}}\) =&nbsp;<span style="font-size: 0.9375rem;">\(\frac{{redNum}}{{redDen}}\)</span></p><p dir="ltr"><br>

</p><p></p><p dir="ltr"><br>

</p><br><p></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>percent={1:99:1};
</text>
</varsrandom>
<varsglobal><text>decimal=percent/100;
GCF=gcd(percent,100);
redNum=percent/GCF;
redDen=100/GCF;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>2</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[redNum,redDen]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text><![CDATA[((abs(_0/_1 - decimal)<0.01) * .5) + ((_0==redNum) *.25) + ((_1==redDen)*.25)]]></text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<table>
    <tbody>
        <tr>
            <td style="border-bottom:1px solid black">{_0}</td>
        </tr>
        <tr>
            <td>{_1}</td>
        </tr>
    </tbody>
</table>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360464  -->
  <question type="formulas">
    <name>
      <text>L51-write percent as fraction over 100</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Write {percent} % as a fraction</p><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 50;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">{percent}% means {percent} out of 100</p><p dir="ltr" style="text-align: left;">\(\frac{{percent}}{100}\)</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>percent={1:99:1};
</text>
</varsrandom>
<varsglobal><text>decimal=percent/100;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>percent</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<table>
    <tbody>
        <tr>
            <td style="border-bottom:1px solid black">{_0}</td>
        </tr>
        <tr>
            <td>100</td>
        </tr>
    </tbody>
</table>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 0  -->
  <question type="category">
    <category>
      <text>$course$/top/Default for MSII/Test #7/L50 - Solving 2-Step Equations</text>
    </category>
    <info format="html">
      <text></text>
    </info>
    <idnumber></idnumber>
  </question>

<!-- question: 360473  -->
  <question type="formulas">
    <name>
      <text>L50- ax+b=c find pos and neg x</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">{a}x + {b} = {c}</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<table>
    <tbody>
        <tr style="border-bottom:1px solid grey">
            <td>{a}x + {b} = {c}</td>
            <td></td>
            <td>Given</td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td><span class="" style="color: rgb(245, 184, 0);">{a}x </span>+ {b} = {c}</td>
            <td></td>
            <td>Make a box around the variable term.<br><span class="" style="color: rgb(255, 204, 51);">(I changed mine to orange because I can not make a box.)</span></td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td>&nbsp; &nbsp; &nbsp;-{b}&nbsp; &nbsp;-{b}</td>
            <td></td>
            <td>Subtract {b} from both sides.<br>{b} - {b} Cancels out.</td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td><span></span>{a}x = {cMb}</td>
            <td></td>
            <td>Simplify:&nbsp; &nbsp;{c}-{b} = {=c-b}&nbsp;<br></td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td>\(\frac{{a}}{{a}}\)x = \(\frac{{cMb}}{{a}}\)<br></td>
            <td></td>
            <td>Divide both sides by {a}</td>
        </tr>
    </tbody>
</table>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>a={-5,-4,-3,-2,-1,2,3,4,5,6};
b={1:15:.5};
x={-10:10:1};</text>
</varsrandom>
<varsglobal><text>aX=a*x;
c=a*x+b;
cMb=c-b;</text>
</varsglobal>
<answernumbering><text>none</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>x</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">x = {_0}</p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360471  -->
  <question type="formulas">
    <name>
      <text>L50- ax+b=c find x</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">{a}x + {b} = {c}</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<table>
    <tbody>
        <tr style="border-bottom:1px solid grey">
            <td>{a}x + {b} = {c}</td>
            <td></td>
            <td>Given</td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td><span class="" style="color: rgb(245, 184, 0);">{a}x </span>+ {b} = {c}</td>
            <td></td>
            <td>Make a box around the variable term.<br><span class="" style="color: rgb(255, 204, 51);">(I changed mine to orange because I can not make a box.)</span></td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td>&nbsp; &nbsp; &nbsp;-{b}&nbsp; &nbsp;-{b}</td>
            <td></td>
            <td>Subtract {b} from both sides.<br>{b} - {b} Cancels out.</td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td><span></span>{a}x = {cMb}</td>
            <td></td>
            <td>Simplify:&nbsp; &nbsp;{c}-{b} = {=c-b}&nbsp;<br></td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td>\(\frac{{a}}{{a}}\)x = \(\frac{{cMb}}{{a}}\)<br></td>
            <td></td>
            <td>Divide both sides by {a}</td>
        </tr>
    </tbody>
</table>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>a={-5,-4,-3,-2,-1,2,3,4,5,6};
b={1:15:.5};
x={-10:10:1};</text>
</varsrandom>
<varsglobal><text>aX=a*x;
c=a*x+b;
cMb=c-b;</text>
</varsglobal>
<answernumbering><text>none</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>x</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">x = {_0}</p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360474  -->
  <question type="formulas">
    <name>
      <text>L50- ax+b=c find x (integers-positive x)</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">{a}x + {b} = {c}</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<table>
    <tbody>
        <tr style="border-bottom:1px solid grey">
            <td>{a}x + {b} = {c}</td>
            <td></td>
            <td>Given</td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td><span class="" style="color: rgb(245, 184, 0);">{a}x </span>+ {b} = {c}</td>
            <td></td>
            <td>Make a box around the variable term.<br><span class="" style="color: rgb(255, 204, 51);">(I changed mine to orange because I can not make a box.)</span></td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td>&nbsp; &nbsp; &nbsp;-{b}&nbsp; &nbsp;-{b}</td>
            <td></td>
            <td>Subtract {b} from both sides.<br>{b} - {b} Cancels out.</td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td><span></span>{a}x = {cMb}</td>
            <td></td>
            <td>Simplify:&nbsp; &nbsp;{c}-{b} = {=c-b}&nbsp;<br></td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td>\(\frac{{a}}{{a}}\)x = \(\frac{{cMb}}{{a}}\)<br></td>
            <td></td>
            <td>Divide both sides by {a}</td>
        </tr>
    </tbody>
</table>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>a={-5,-4,-3,-2,-1,2,3,4,5,6};
b={1:15:1};
x={1:10:1};</text>
</varsrandom>
<varsglobal><text>aX=a*x;
c=a*x+b;
cMb=c-b;</text>
</varsglobal>
<answernumbering><text>none</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>x</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">x = {_0}</p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360472  -->
  <question type="formulas">
    <name>
      <text>L50- ax-b=c find x</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">{a}x {b} = {c}</p>
<p dir="ltr" style="text-align: left;">x={#1}</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>a={-5,-4,-3,-2,-1,2,3,4,5,6};
b={-15:-1:.5};
x={-10:10:1};</text>
</varsrandom>
<varsglobal><text>aX=a*x;
c=a*x+b;</text>
</varsglobal>
<answernumbering><text>none</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text>#1</text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>x</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">{_0}</p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360475  -->
  <question type="formulas">
    <name>
      <text>L50- b- ax=c find x (integers-positive x)</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">{b} - {a}x = {c}</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<table>
    <tbody>
        <tr style="border-bottom:1px solid grey">
            <td>{b} - {a}x = {c}</td>
            <td></td>
            <td>Given</td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td>{b} <span class="" style="color: rgb(255, 207, 53);">-</span><span class="" style="color: rgb(245, 184, 0);">{a}x</span>&nbsp;= {c}</td>
            <td></td>
            <td>Make a box around the variable term.<br><span class="" style="color: rgb(255, 204, 51);">(I changed mine to orange because I can not make a box.)</span></td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td>-{b}&nbsp; &nbsp; &nbsp;-{b}</td>
            <td></td>
            <td>Subtract {b} from both sides.<br>{b} - {b} Cancels out.</td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td><span></span>-{a}<span class="" style="color: rgb(51, 204, 255);">x</span> = {cMb}</td>
            <td></td>
            <td>Simplify:&nbsp; &nbsp;{c}-{b} = {cMb}&nbsp;<br></td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td>\(\frac{-{a}}{-{a}}\)x = \(\frac{{cMb}}{-{a}}\)<br></td>
            <td></td>
            <td>To solve for <span class="" style="color: rgb(51, 204, 255);">x</span>, divide both sides by -{a}</td>
        </tr>
        <tr>
            <td>x =&nbsp;{=cMb/a}</td>
            <td></td>
            <td>Simplify</td>
        </tr>
        <tr>
            <td colspan="3" style="text-align: left;"><strong>Check the answer</strong></td>

        </tr>
        <tr>
            <td>{b} - {a}x = {c}</td>
            <td></td>
            <td>Write the original equation</td>
        </tr>
        <tr>
            <td>{b} - {a}({x}) ?= {c}</td>
            <td></td>
            <td>Substitute the value of x.&nbsp;&nbsp;<br>Place x in parentheses to show multiplication.</td>
        </tr>
        <tr>
            <td>{b} - {=a*x} ?= {c}</td>
            <td></td>
            <td>Multiply {a} and {x}</td>
        </tr><tr>
            <td>{=b-a*x} ?= {c}</td>
            <td></td>
            <td>Subtract {b} -&nbsp; {=a*x}<br>Since they are equal, x={x} is the correct answer.</td>
        </tr>
    </tbody>
</table>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>a={2,3,4,5,6};
b={1:15:1};
x={1:10:1};</text>
</varsrandom>
<varsglobal><text>aX=a*x;
c=a*x+b;
cMb=c-b;</text>
</varsglobal>
<answernumbering><text>none</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>x</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">x = {_0}</p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360477  -->
  <question type="formulas">
    <name>
      <text>L50- c=(a+var)/b</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">{c}=\(\frac{{b}+{var}}{{den}}\)</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<table>
    <tbody>
        <tr>
            <td>{c}=\(\frac{{b}+{var}}{{den}}\)</td>
            <td>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>Given</td>
        </tr>
        <tr>
            <td>({den}){c}=\(\frac{{b}+{var}}{{den}}\)({den})</td>
            <td></td>
            <td>Since the variable is in the numerator, Multiply both sides by the denominator.</td>
        </tr>
        <tr>
            <td>{=den*c}={b}+{var}</td>
            <td></td>
            <td>Simplify</td>
        </tr>
        <tr>
            <td>-{b}&nbsp; &nbsp;-{b}</td>
            <td></td>
            <td>Subtract {b} on both sides.<br>{b}-{b} cancels out</td>
        </tr>
        <tr>
            <td>{x} = {var}</td>
            <td></td>
            <td>Simplify:&nbsp;&nbsp;{=den*c} - {b} = {x}</td>
        </tr>
        <tr>
            <td colspan="3">Check the answer</td>
            
        </tr>
        <tr>
            <td>{c}=\(\frac{{b}+{var}}{{den}}\)</td>
            <td></td>
            <td>Write the original equation</td>
        </tr>
        <tr>
            <td>{c}=\(\frac{{b}+{x}}{{den}}\)</td>
            <td></td>
            <td>Substitute the value of the variable</td>
        </tr>
        <tr>
            <td>{c}=\(\frac{{b}+{x}}{{den}}\)</td>
            <td></td>
            <td>Simplify the numerator</td>
        </tr>
        <tr>
            <td>{c}=\(\frac{{bPx}}{{den}}\)</td>
            <td></td>
            <td>Divide {bPx} by {den}</td>
        </tr>
        <tr>
            <td>{c}={c}</td>
            <td></td>
            <td>since they are equal, {var} = {x}</td>
        </tr>
    </tbody>
</table>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text><![CDATA[var={"z","y","x","a","b","c"};
den={2,3,4,5,6,7};
c={10:25:1};
b={1,2,3,4,5,6,7,8,9};
]]></text>
</varsrandom>
<varsglobal><text>x=(c*den)-b;
bPx=b+x;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>x</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">{var} = {_0}</p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360476  -->
  <question type="formulas">
    <name>
      <text>L50- var/a + b = c</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">\(\frac{{var}}{{a}}\) + {b} = {c}</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<table>
    <tbody>
        <tr style="border-bottom:1px solid grey">
            <td>
                <p dir="ltr" style="text-align: left;">\(\frac{{var}}{{a}}\) + {b} = {c}</p>
            </td>
            <td></td>
            <td>given</td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td><span class="" style="color: rgb(255, 207, 53);">\(\frac{{var}}{{a}}\)</span> + {b} = {c}</td>
            <td></td>
            <td>Make a box around the variable term.<br><span>(I changed mine to orange because I can not make a box.)</span>&nbsp;</td>
        </tr>

        <tr style="border-bottom:1px solid grey">
            <td>&nbsp; &nbsp;-{b}&nbsp; &nbsp; &nbsp;-{b}</td>
            <td></td>
            <td>Subtract {b} from both sides.<br>{b} - {b} Cancels out.</td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td><span></span>\(\frac{{var}}{{a}}\)&nbsp;= {cMb}</td>
            <td></td>
            <td>Simplify:&nbsp; &nbsp;{c}-{b} = {cMb}&nbsp;<br></td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td>({a})\(\frac{{var}}{{a}}\) = ({cMb})({a})<br></td>
            <td>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</td>
            <td>To solve for {var},&nbsp;multiply both sides by {a}</td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td>{var} =&nbsp;{x}</td>
            <td></td>
            <td>Simplify</td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td colspan="3" style="text-align: left;"><strong>Check the answer</strong></td>

        </tr>
        <tr style="border-bottom:1px solid grey">
            <td>\(\frac{{var}}{{a}}\) + {b} = {c}</td>
            <td></td>
            <td>Write the original equation</td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td>\(\frac{{x}}{{a}}\) + {b} = {c}</td>
            <td></td>
            <td>Substitute the value of x.&nbsp;&nbsp;<br>Place x in parentheses to show multiplication.</td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td>{factor} + {b} = {c}</td>
            <td></td>
            <td>Divide {x} and {a}</td>
        </tr>
        <tr style="border-bottom:1px solid grey">
            <td>{c} = {c}</td>
            <td></td>
            <td>Add {factor} +&nbsp; {b}<br>Since they are equal, x={x} is the correct answer.</td>
        </tr>
    </tbody>
</table>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text><![CDATA[var={"x","y","z","a","b","c"};
a={2,3,4,5,6,7,8,9,10};
b={2:11:1};
factor={2,3,4,5,6};
]]></text>
</varsrandom>
<varsglobal><text>x=factor*a;
c=factor+b;
cMb=c-b;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>x</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">{var} = {_0}</p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 0  -->
  <question type="category">
    <category>
      <text>$course$/top/Default for MSII/Test #7/L52-Us Customary and Inequalities</text>
    </category>
    <info format="html">
      <text></text>
    </info>
    <idnumber></idnumber>
  </question>

<!-- question: 360495  -->
  <question type="formulas">
    <name>
      <text>L52 - Choose the words for each symbol</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[What inequality symbol represents the words.&nbsp;]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[Memorize the following chart:<br><table>
    <tbody>
        <tr style="border-bottom:1px solid black; border-top:1px solid black">
            <td style="text-align: center; border-right:1px solid black; border-left:1px solid black"><strong>Inequality</strong></td>
            <td style="text-align: center; border-right:1px solid black;">&lt;</td>
            <td style="text-align: center; border-right:1px solid black;">&gt;</td>
            <td style="text-align: center; border-right:1px solid black;">≤</td>
            <td style="text-align: center; border-right:1px solid black;">≥</td>
        </tr>
        <tr style="border-bottom:1px solid black">
            <td style="text-align: center; border-right:1px solid black;border-left:1px solid black" rowspan="4"><strong>Words</strong></td>
            <td style="text-align: center; border-right:1px solid black;">less than</td>
            <td style="text-align: center; border-right:1px solid black;">&nbsp; greater than&nbsp;&nbsp;</td>
            <td style="text-align: center; border-right:1px solid black;">&nbsp; less than or equal to&nbsp;&nbsp;</td>
            <td style="text-align: center; border-right:1px solid black;">&nbsp; greater than or equal to&nbsp;&nbsp;</td>
        </tr>
        <tr style="border-bottom:1px solid black">

            <td style="text-align: center; border-right:1px solid black;">&nbsp; fewer than&nbsp;&nbsp;</td>
            <td style="text-align: center; border-right:1px solid black;">more than</td>
            <td style="text-align: center; border-right:1px solid black;">no more than</td>
            <td style="text-align: center; border-right:1px solid black;">no less than</td>
        </tr>
        <tr style="border-bottom:1px solid black">

            <td style="text-align: center; border-right:1px solid black;">up to</td>
            <td style="text-align: center; border-right:1px solid black;">exceeds</td>
            <td style="text-align: center; border-right:1px solid black;">at most</td>
            <td style="text-align: center; border-right:1px solid black;">at least</td>
        </tr>
        <tr style="border-bottom:1px solid black">

            <td style="text-align: center; border-right:1px solid black;"><br></td>
            <td style="text-align: center; border-right:1px solid black;">in excess of</td>
            <td style="text-align: center; border-right:1px solid black;"><br></td>
            <td style="text-align: center; border-right:1px solid black;"><br></td>
        </tr>
    </tbody>
</table>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>randPhrase={0,1,2,3,4,5,6,7,8,9,10,11,12};
randAns=shuffle([0,1,2,3]);
</text>
</varsrandom>
<varsglobal><text><![CDATA[word=["is less than","is fewer than","up to","is greater than","is more than","exceeds","in excess of","is less than or equal to","no more than","at most","is great than or equal to","no less than","at least"];
ansArray=[0,0,0,1,1,1,1,2,2,2,3,3,3];
choiceArray=["<",">","≤","≥"];
choices=[choiceArray[randAns[0]],choiceArray[randAns[1]],choiceArray[randAns[2]],choiceArray[randAns[3]]];
ans=ansArray[randPhrase];

]]></text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>ans</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>randAns[_0]==ans</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">{=word[randPhrase]}&nbsp; &nbsp; {_0:choices:MCE}</p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360496  -->
  <question type="formulas">
    <name>
      <text>L52- Inequalities on the Number line - Integers</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[Graph {ques} for the set of integers.<br>
<jsxgraph width="500" height="300">var board = JXG.JSXGraph.initBoard(BOARDID, {boundingbox:[-1,22,11,-10], axis:false, ShowCopyright: false, showNavigation:false});
    let A={a};
    let B={b};
    let C={c};
    let D={d};

    var numLine = board.create('axis', [[0, 18],[10, 18]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});
    if (A===0){
    for (j=0; j&lt;{number1};j++) {
    var p1=board.create('point',[j,18],{fixed:true,showInfobox:false,name:""});}
    } else if (A===1){
    for (j={number2}; j&lt;11;j++) {
    var p1=board.create('point',[j,18],{fixed:true,showInfobox:false,name:""});}
    } else if (A===2){
    for (j=0; j&lt;{number2};j++) {
    var p1=board.create('point',[j,18],{fixed:true,showInfobox:false,name:""});}
    } else if (A===3){
    for (j={number1}; j&lt;11;j++) {
    var p1=board.create('point',[j,18],{fixed:true,showInfobox:false,name:""});}
    }
    var tA=board.create('text',[-.7,18.5,"(a)"],{fontSize:15});

    var numLine = board.create('axis', [[0, 12],[10, 12]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});
    if (B===0){
    for (j=0; j&lt;{number1};j++) {
    var p1=board.create('point',[j,12],{fixed:true,showInfobox:false,name:""});}
    } else if (B===1){
    for (j={number2}; j&lt;11;j++) {
    var p1=board.create('point',[j,12],{fixed:true,showInfobox:false,name:""});}
    } else if (B===2){
    for (j=0; j&lt;{number2};j++) {
    var p1=board.create('point',[j,12],{fixed:true,showInfobox:false,name:""});}
    } else if (B===3){
    for (j={number1}; j&lt;11;j++) {
    var p1=board.create('point',[j,12],{fixed:true,showInfobox:false,name:""});}
    }
    var tA=board.create('text',[-.7,12.5,"(b)"],{fontSize:15});

    var numLine = board.create('axis', [[0, 6],[10, 6]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});
    if (C===0){
    for (j=0; j&lt;{number1};j++) {
    var p1=board.create('point',[j,6],{fixed:true,showInfobox:false,name:""});}
    } else if (C===1){
    for (j={number2}; j&lt;11;j++) {
    var p1=board.create('point',[j,6],{fixed:true,showInfobox:false,name:""});}
    } else if (C===2){
    for (j=0; j&lt;{number2};j++) {
    var p1=board.create('point',[j,6],{fixed:true,showInfobox:false,name:""});}
    } else if (C===3){
    for (j={number1}; j&lt;11;j++) {
    var p1=board.create('point',[j,6],{fixed:true,showInfobox:false,name:""});}
    }

    var tA=board.create('text',[-.7,6.5,"(c)"],{fontSize:15});

    var numLine = board.create('axis', [[0, 0],[10, 0]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});
    if (D===0){
    for (j=0; j&lt;{number1};j++) {
    var p1=board.create('point',[j,0],{fixed:true,showInfobox:false,name:""});}
    } else if (D===1){
    for (j={number2}; j&lt;11;j++) {
    var p1=board.create('point',[j,0],{fixed:true,showInfobox:false,name:""});}
    } else if (D===2){
    for (j=0; j&lt;{number2};j++) {
    var p1=board.create('point',[j,0],{fixed:true,showInfobox:false,name:""});}
    } else if (D===3){
    for (j={number1}; j&lt;11;j++) {
    var p1=board.create('point',[j,0],{fixed:true,showInfobox:false,name:""});}
    }
    var tA=board.create('text',[-.7,.5,"(d)"],{fontSize:15});
</jsxgraph>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">{feedback}</p>
<p>The correct graph is:</p>

<jsxgraph width="500" height="100">var board = JXG.JSXGraph.initBoard(BOARDID, {boundingbox:[-1,5,11,-10], axis:false, ShowCopyright: false, showNavigation:false});
    let A={ans};


    var numLine = board.create('axis', [[0, 0],[10, 0]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});
    if (A===0){
    for (j=0; j&lt;{number1};j++) {
    var p1=board.create('point',[j,0],{fixed:true,showInfobox:false,name:""});}
    } else if (A===1){
    for (j={number2}; j&lt;11;j++) {
    var p1=board.create('point',[j,0],{fixed:true,showInfobox:false,name:""});}
    } else if (A===2){
    for (j=0; j&lt;{number2};j++) {
    var p1=board.create('point',[j,0],{fixed:true,showInfobox:false,name:""});}
    } else if (A===3){
    for (j={number1}; j&lt;11;j++) {
    var p1=board.create('point',[j,0],{fixed:true,showInfobox:false,name:""});}
    }
    var tA=board.create('text',[-.7,0.5,"({letterAns})"],{fontSize:15});
</jsxgraph>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text><![CDATA[number1={3:8:1};
ans={0,1,2,3};
choices=shuffle([0,1,2,3]);
name={"A","B","C","D","E","F","G","H","R","S","T","X","Y","Z"};

]]></text>
</varsrandom>
<varsglobal><text><![CDATA[number2=number1+1;
a=choices[0];
b=choices[1];
c=choices[2];
d=choices[3];
ques=join("",name," ",pick(ans,"&lt;",">","≤","≥")," ",number1);
mcChoices=["a","b","c","d"];
selection = (choices[0]==ans)?0:-1;
selection = (choices[1]==ans)?1:selection;
selection = (choices[2]==ans)?2:selection;
selection = (choices[3]==ans)?3:selection;
letterAns=mcChoices[selection];
feedback=pick(ans,"Less than (&lt;) means to include the numbers with a lower value.  Do not include the value of the number.","Greater than (>) means include the numbers of higher value.  Do not include the value of the number.","Less than or equal to (≤) means to include the number and all numbers that are a smaller value.","Greater than or equal to (≥) means include the number and all numbers of larger value.");
]]></text>
</varsglobal>
<answernumbering><text>none</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>selection</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>choices[_0]==ans</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">The graph of {ques} is {_0:mcChoices}</p>]]></text>
 </subqtext>
 <feedback format="html">
<text><![CDATA[<p dir="ltr"><br></p><ol><ul>

    </ul>
</ol>
<p></p>]]></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360497  -->
  <question type="formulas">
    <name>
      <text>L52- Inequalities on the Number line - Real</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[Graph {ques} for the set of Real Numbers.<br>
<jsxgraph width="500" height="300">var board = JXG.JSXGraph.initBoard(BOARDID, {boundingbox:[-1,22,11,-10], axis:false, ShowCopyright: false, showNavigation:false});
    let A={a};
    let B={b};
    let C={c};
    let D={d};

    var numLine = board.create('axis', [[0, 18],[10, 18]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


    if (A===0){
    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:3});
    var pA1w=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
    var pA0=board.create('point',[0,18],{fixed:true,showInfobox:false,name:"",size:0});
    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
    } else if (A===1){
    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});
    var pA1w=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
    var pA0=board.create('point',[10,18],{fixed:true,showInfobox:false,name:"",size:0});
    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
    } else if (A===2){
    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});

    var pA0=board.create('point',[0,18],{fixed:true,showInfobox:false,name:"",size:0});
    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
    } else if (A===3){
    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});

    var pA0=board.create('point',[10,18],{fixed:true,showInfobox:false,name:"",size:0});
    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
    }
    var tA=board.create('text',[-.7,18.5,"(a)"],{fontSize:15});

    var numLine = board.create('axis', [[0, 12],[10, 12]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


    if (B===0){
    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:3});
    var pA1w=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
    var pA0=board.create('point',[0,12],{fixed:true,showInfobox:false,name:"",size:0});
    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
    } else if (B===1){
    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});
    var pA1w=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
    var pA0=board.create('point',[10,12],{fixed:true,showInfobox:false,name:"",size:0});
    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
    } else if (B===2){
    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});

    var pA0=board.create('point',[0,12],{fixed:true,showInfobox:false,name:"",size:0});
    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
    } else if (B===3){
    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});

    var pA0=board.create('point',[10,12],{fixed:true,showInfobox:false,name:"",size:0});
    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
    }
    var tA=board.create('text',[-.7,12.5,"(b)"],{fontSize:15});



    var numLine = board.create('axis', [[0, 6],[10, 6]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


    if (C===0){
    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:3});
    var pA1w=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
    var pA0=board.create('point',[0,6],{fixed:true,showInfobox:false,name:"",size:0});
    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
    } else if (C===1){
    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});
    var pA1w=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
    var pA0=board.create('point',[10,6],{fixed:true,showInfobox:false,name:"",size:0});
    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
    } else if (C===2){
    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});

    var pA0=board.create('point',[0,6],{fixed:true,showInfobox:false,name:"",size:0});
    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
    } else if (C===3){
    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});

    var pA0=board.create('point',[10,6],{fixed:true,showInfobox:false,name:"",size:0});
    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
    }
    var tA=board.create('text',[-.7,6.5,"(c)"],{fontSize:15});


    var numLine = board.create('axis', [[0, 0],[10, 0]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


    if (D===0){
    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:3});
    var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
    var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0});
    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
    } else if (D===1){
    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});
    var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
    var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0});
    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
    } else if (D===2){
    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});

    var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0});
    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
    } else if (D===3){
    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});

    var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0});
    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
    }
    var tA=board.create('text',[-.7,0.5,"(d)"],{fontSize:15});
</jsxgraph>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">{feedback}</p>
<p>The correct graph is:</p>

<jsxgraph width="500" height="100">var board = JXG.JSXGraph.initBoard(BOARDID, {boundingbox:[-1,5,11,-10], axis:false, ShowCopyright: false, showNavigation:false});
    let A={ans};


    var numLine = board.create('axis', [[0, 0],[10, 0]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


    if (A===0){
    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:3});
    var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
    var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0});
    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
    } else if (A===1){
    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});
    var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
    var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0});
    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
    } else if (A===2){
    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});

    var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0});
    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
    } else if (A===3){
    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});

    var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0});
    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
    }
    
    var tA=board.create('text',[-.7,0.5,"({letterAns})"],{fontSize:15});
</jsxgraph>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text><![CDATA[number1={3:8:1};
ans={0,1,2,3};
choices=shuffle([0,1,2,3]);
name={"A","B","C","D","E","F","G","H","R","S","T","X","Y","Z"};

]]></text>
</varsrandom>
<varsglobal><text><![CDATA[number2=number1+1;
a=choices[0];
b=choices[1];
c=choices[2];
d=choices[3];
ques=join("",name," ",pick(ans,"&lt;",">","≤","≥")," ",number1);
mcChoices=["a","b","c","d"];
selection = (choices[0]==ans)?0:-1;
selection = (choices[1]==ans)?1:selection;
selection = (choices[2]==ans)?2:selection;
selection = (choices[3]==ans)?3:selection;
letterAns=mcChoices[selection];
feedback=pick(ans,"Less than (&lt;) means to include the numbers with a lower value.  Do not include the value of the number.","Greater than (>) means include the numbers of higher value.  Do not include the value of the number.","Less than or equal to (≤) means to include the number and all numbers that are a smaller value.","Greater than or equal to (≥) means include the number and all numbers of larger value.");
]]></text>
</varsglobal>
<answernumbering><text>none</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>selection</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>choices[_0]==ans</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">The graph of {ques} is {_0:mcChoices}</p>]]></text>
 </subqtext>
 <feedback format="html">
<text><![CDATA[<p dir="ltr"><br></p><ol><ul>

    </ul>
</ol>
<p></p>]]></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360493  -->
  <question type="formulas">
    <name>
      <text>L52-Length unit rates</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Enter the missing measurement to make a true statement.</p><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;"><span class="" style="color: rgb(255, 51, 102);">It is helpful to memorize the equations used for unit rates.</span></p><p dir="ltr" style="text-align: left;"><strong>{ans}</strong> {unit0} = 1 {unit1}<br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>randRate={0,1,2,3};</text>
</varsrandom>
<varsglobal><text><![CDATA[rateArray=["inches","foot","feet","yard","feet","mile","yards","mile"];
numArray=[12,3,5280,1760];
unit0=rateArray[randRate*2];
unit1=rateArray[randRate*2+1];
ans=numArray[randRate];]]></text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>ans</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">{_0} {unit0} = 1 {unit1}<br></p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360498  -->
  <question type="formulas">
    <name>
      <text>L52-Metric Equal Measures</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Enter the missing measurement to make a true statement.</p><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;"><span class="" style="color: rgb(255, 51, 102);">It is helpful to memorize the equations used for unit rates.</span></p><p dir="ltr" style="text-align: left;"><strong>{ans}</strong> {unit0} = 1 {unit1}<br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>randRate={0,1,2};</text>
</varsrandom>
<varsglobal><text><![CDATA[rateArray=["mm","cm","cm","m","m","km"];
numArray=[10,100,1000];
unit0=rateArray[randRate*2];
unit1=rateArray[randRate*2+1];
ans=numArray[randRate];]]></text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>ans</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">{_0} {unit0} = 1 {unit1}<br></p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360494  -->
  <question type="formulas">
    <name>
      <text>L52-time unit rates</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Enter the missing measurement to make a true statement.</p><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;"><span class="" style="color: rgb(255, 51, 102);">It is helpful to memorize the equation used for unit rates.</span></p><p dir="ltr" style="text-align: left;"><strong>{ans}</strong> {unit0} = 1 {unit1}<br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>randRate={0,1,2,3,4,5,6,7};</text>
</varsrandom>
<varsglobal><text><![CDATA[rateArray=["seconds","minute","minutes","hour","hours","day","days","week","weeks","year","days","year","days","leap year","months","year"];
numArray=[60,60,24,7,52,365,366,12];
unit0=rateArray[randRate*2];
unit1=rateArray[randRate*2+1];
ans=numArray[randRate];]]></text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>ans</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">{_0} {unit0} = 1 {unit1}<br></p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360492  -->
  <question type="formulas">
    <name>
      <text>L52-volume and capacity unit rates</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Enter the missing measurement to make a true statement.</p><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;"><span class="" style="color: rgb(255, 51, 102);">It is helpful to memorize the equations used for unit rates.</span></p><p dir="ltr" style="text-align: left;"><strong>{ans}</strong> {unit0} = 1 {unit1}<br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>randRate={0,1,2,3};</text>
</varsrandom>
<varsglobal><text><![CDATA[rateArray=["ounces","cup","cups","pint","pints","quart","quarts","gallon"];
numArray=[8,2,2,4];
unit0=rateArray[randRate*2];
unit1=rateArray[randRate*2+1];
ans=numArray[randRate];]]></text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>ans</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">{_0} {unit0} = 1 {unit1}<br></p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 0  -->
  <question type="category">
    <category>
      <text>$course$/top/Default for MSII/Test #7/L53- Solve Addition and Subtraction Inequalities/L53- Problem Solving - Patterns</text>
    </category>
    <info format="html">
      <text></text>
    </info>
    <idnumber></idnumber>
  </question>

<!-- question: 360507  -->
  <question type="formulas">
    <name>
      <text>L53- solve-graph Add inequalities</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[{ques}
Solve for {name}, then graph the solution.<br><br>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text></text>
    </generalfeedback>
    <defaultgrade>2.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text><![CDATA[number1={3:8:1};
ans={0,1,2,3};
choices=shuffle([0,1,2,3]);
name={"A","B","C","D","E","F","G","H","R","S","T","X","Y","Z"};
offset={4:9:1};

]]></text>
</varsrandom>
<varsglobal><text><![CDATA[number2=number1+1;
a=choices[0];
b=choices[1];
c=choices[2];
d=choices[3];
ques=join("",name," + ",offset," ",pick(ans,"&lt;",">","≤","≥")," ",number1+offset);
mcChoices=["a","b","c","d"];
selection = (choices[0]==ans)?0:-1;
selection = (choices[1]==ans)?1:selection;
selection = (choices[2]==ans)?2:selection;
selection = (choices[3]==ans)?3:selection;
letterAns=mcChoices[selection];
feedback=pick(ans,"Less than (&lt;) means to include the numbers with a lower value.  Do not include the value of the number.","Greater than (>) means include the numbers of higher value.  Do not include the value of the number.","Less than or equal to (≤) means to include the number and all numbers that are a smaller value.","Greater than or equal to (≥) means include the number and all numbers of larger value.");
ineq=["&lt;",">","≤","≥"];
FBp1=pick(ans,"less than","greater than","less than","greater than");
test=pick(ans,number1-1,number1+1,number1-1,number1+1);]]></text>
</varsglobal>
<answernumbering><text>none</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>2</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[ans,number1]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">The solution to the inequality is {name} {_0:ineq:MCE} {_1}</p>]]></text>
 </subqtext>
 <feedback format="html">
<text><![CDATA[<p dir="ltr"><br></p>
<table>
    <tbody>
        <tr>
            <td>
                <p dir="ltr">{name} + {offset} {=ineq[ans]} {=number1+offset}</p>
          </td><td></td>
            <td>&nbsp; Given</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr">&nbsp; <span class="" style="color: rgb(255, 51, 102);">- {offset}</span>&nbsp; &nbsp; &nbsp; <span class="" style="color: rgb(255, 51, 102);">-{offset}</span></p>
            </td><td></td>
            <td>Subtract <span class="" style="color: rgb(255, 51, 102);">{offset}</span> from both sides</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr"><strong>{name}&nbsp; {=ineq[ans]} {number1}</strong></p>
            </td><td></td>
            <td>Simplify</td>
        </tr>
        <tr>
            <td colspan="2">
                <h3 style="text-align: left;"><strong><span class="" style="color: rgb(51, 102, 255);">Check the answer</span></strong></h3>
            </td>

        </tr>
        <tr>
            <td>
                <p dir="ltr">{name} + {offset} {=ineq[ans]} {=number1+offset}<br></p>
            </td><td></td>
            <td>Given</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr"><span class="" style="color: rgb(255, 51, 102);">{test} </span>+ {offset} {=ineq[ans]} {=number1+offset}<br></p>
            </td><td></td>
            <td>The inequality is {=ineq[ans]} so <br>choose a number {FBp1} {number1}.<br>In the example I will use <span class="" style="color: rgb(255, 51, 102);">{test}</span> as your substitution.</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr">{=test+offset} {=ineq[ans]} {=number1+offset}<br></p>
            </td><td></td>
            <td>Simplify<br>Since it is a <strong>true </strong>statement, <br>the solution is correct.</td>
        </tr>
       
    </tbody>
</table>]]></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
<answers>
 <partindex>
  <text>1</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>selection</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>choices[_0]==ans</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[Graph the solution of {ques} for the set of Real Numbers.<table>
    <tbody>
        <tr><td>{_0:mcChoices}<br><br><br></td>
            <td>
                <jsxgraph width="500" height="300">var board = JXG.JSXGraph.initBoard(BOARDID, {boundingbox:[-1,22,11,-10], axis:false, ShowCopyright: false, showNavigation:false});
                    let A={a};
                    let B={b};
                    let C={c};
                    let D={d};

                    var numLine = board.create('axis', [[0, 18],[10, 18]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (A===0){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===1){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===2){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===3){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,18.5,"(a)"],{fontSize:15});

                    var numLine = board.create('axis', [[0, 12],[10, 12]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (B===0){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===1){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===2){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===3){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,12.5,"(b)"],{fontSize:15});



                    var numLine = board.create('axis', [[0, 6],[10, 6]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (C===0){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===1){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===2){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===3){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,6.5,"(c)"],{fontSize:15});


                    var numLine = board.create('axis', [[0, 0],[10, 0]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (D===0){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===1){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===2){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===3){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,0.5,"(d)"],{fontSize:15});
                </jsxgraph>
            </td>
            
        </tr>
    </tbody>
</table>]]></text>
 </subqtext>
 <feedback format="html">
<text><![CDATA[{feedback}

The correct graph is:
<jsxgraph width="500" height="100">
    var board = JXG.JSXGraph.initBoard(BOARDID, {boundingbox:[-1,5,11,-10], axis:false, ShowCopyright: false, showNavigation:false}); let A={ans}; var numLine = board.create('axis', [[0, 0],[10, 0]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}}); if (A===0){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:3}); var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'}); var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===1){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'}); var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===2){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===3){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } var tA=board.create('text',[-.7,0.5,"({letterAns})"],{fontSize:15});
</jsxgraph>]]></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360508  -->
  <question type="formulas">
    <name>
      <text>L53- solve-graph Subt inequalities</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[{ques}
Solve for {name}, then graph the solution.<br><br>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text></text>
    </generalfeedback>
    <defaultgrade>2.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text><![CDATA[number1={3:8:1};
ans={0,1,2,3};
choices=shuffle([0,1,2,3]);
name={"A","B","C","D","E","F","G","H","R","S","T","X","Y","Z"};
offset={4:9:1};

]]></text>
</varsrandom>
<varsglobal><text><![CDATA[number2=number1+1;
a=choices[0];
b=choices[1];
c=choices[2];
d=choices[3];
ques=join("",name," - ",offset," ",pick(ans,"&lt;",">","≤","≥")," ",number1-offset);
mcChoices=["a","b","c","d"];
selection = (choices[0]==ans)?0:-1;
selection = (choices[1]==ans)?1:selection;
selection = (choices[2]==ans)?2:selection;
selection = (choices[3]==ans)?3:selection;
letterAns=mcChoices[selection];
feedback=pick(ans,"Less than (&lt;) means to include the numbers with a lower value.  Do not include the value of the number.","Greater than (>) means include the numbers of higher value.  Do not include the value of the number.","Less than or equal to (≤) means to include the number and all numbers that are a smaller value.","Greater than or equal to (≥) means include the number and all numbers of larger value.");
ineq=["&lt;",">","≤","≥"];
FBp1=pick(ans,"less than","greater than","less than","greater than");
test=pick(ans,number1-1,number1+1,number1-1,number1+1);]]></text>
</varsglobal>
<answernumbering><text>none</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>2</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[ans,number1]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">The solution to the inequality is {name} {_0:ineq:MCE} {_1}</p>]]></text>
 </subqtext>
 <feedback format="html">
<text><![CDATA[<p dir="ltr"><br></p>
<table>
    <tbody>
        <tr>
            <td>
                <p dir="ltr">{name} - {offset} {=ineq[ans]} {=number1-offset}</p>
            </td>
            <td></td>
            <td>&nbsp; Given</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr">&nbsp; <span class="" style="color: rgb(255, 51, 102);">+ {offset}</span>&nbsp; &nbsp; &nbsp; <span class="" style="color: rgb(255, 51, 102);">+{offset}</span></p>
          </td><td></td>
            <td>Add&nbsp;<span class="" style="color: rgb(255, 51, 102);">{offset}</span> to both sides</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr"><strong>{name}&nbsp; {=ineq[ans]} {number1}</strong></p>
            </td>
            <td></td>
            <td>Simplify</td>
        </tr>
        <tr>
            <td colspan="2">
                <h3 style="text-align: left;"><strong><span class="" style="color: rgb(51, 102, 255);">Check the answer</span></strong></h3>
            </td>

        </tr>
        <tr>
            <td>
                <p dir="ltr">{name} - {offset} {=ineq[ans]} {=number1-offset}<br></p>
            </td>
            <td></td>
            <td>Given</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr"><span class="" style="color: rgb(255, 51, 102);">{test} </span>- {offset} {=ineq[ans]} {=number1-offset}<br></p>
            </td>
            <td></td>
            <td>The inequality is {=ineq[ans]} so <br>choose a number {FBp1} {number1}.<br>In the example I will use <span class="" style="color: rgb(255, 51, 102);">{test}</span> as the substitution.</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr">{=test-offset} {=ineq[ans]} {=number1-offset}<br></p>
            </td>
            <td></td>
            <td>Simplify<br>Since it is a <strong>true </strong>statement, <br>the solution is correct.</td>
        </tr>

    </tbody>
</table>]]></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
<answers>
 <partindex>
  <text>1</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>selection</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>choices[_0]==ans</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[Graph the solution of {ques} for the set of Real Numbers.<table>
    <tbody>
        <tr><td>{_0:mcChoices}<br><br><br></td>
            <td>
                <jsxgraph width="500" height="300">var board = JXG.JSXGraph.initBoard(BOARDID, {boundingbox:[-1,22,11,-10], axis:false, ShowCopyright: false, showNavigation:false});
                    let A={a};
                    let B={b};
                    let C={c};
                    let D={d};

                    var numLine = board.create('axis', [[0, 18],[10, 18]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (A===0){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===1){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===2){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===3){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,18.5,"(a)"],{fontSize:15});

                    var numLine = board.create('axis', [[0, 12],[10, 12]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (B===0){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===1){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===2){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===3){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,12.5,"(b)"],{fontSize:15});



                    var numLine = board.create('axis', [[0, 6],[10, 6]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (C===0){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===1){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===2){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===3){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,6.5,"(c)"],{fontSize:15});


                    var numLine = board.create('axis', [[0, 0],[10, 0]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (D===0){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===1){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===2){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===3){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,0.5,"(d)"],{fontSize:15});
                </jsxgraph>
            </td>
            
        </tr>
    </tbody>
</table>]]></text>
 </subqtext>
 <feedback format="html">
<text><![CDATA[{feedback}

The correct graph is:
<jsxgraph width="500" height="100">
    var board = JXG.JSXGraph.initBoard(BOARDID, {boundingbox:[-1,5,11,-10], axis:false, ShowCopyright: false, showNavigation:false}); let A={ans}; var numLine = board.create('axis', [[0, 0],[10, 0]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}}); if (A===0){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:3}); var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'}); var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===1){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'}); var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===2){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===3){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } var tA=board.create('text',[-.7,0.5,"({letterAns})"],{fontSize:15});
</jsxgraph>]]></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360506  -->
  <question type="formulas">
    <name>
      <text>L53-Problem Solving- perimeter</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">A regular polygon is a polygon with all sides the same length, and all angles the same measurement. Find the perimeter of a {=polygon[shape]} with sides = {side} {unit}.&nbsp; &nbsp;</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">A {=polygon[shape]} has {shape} sides.</p><p dir="ltr" style="text-align: left;">To find the perimeter, multiply the length of one side by {shape}.</p><p dir="ltr" style="text-align: left;">P=(the number of sides) times (the length of one side)</p><p dir="ltr" style="text-align: left;">P = ({shape})({side})&nbsp;</p><p dir="ltr" style="text-align: left;">P = {perimeter} {unit}</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text><![CDATA[side={2:15};
shape={3,4,5,6,10};
unit={"mm","meters","yards","km","cm","dm","inches","feet"};]]></text>
</varsrandom>
<varsglobal><text><![CDATA[polygon=["","","","triangle","quadrilateral","pentagon","hexagon","","","","decagon"];
units=[unit,join("",unit,"<sup>2</sup>"),join("",unit,"<sup>3</sup>")];
perimeter=shape*side;]]></text>
</varsglobal>
<answernumbering><text>none</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>2</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[perimeter,0]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">The perimeter= {_0} {_1:units}</p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 0  -->
  <question type="category">
    <category>
      <text>$course$/top/Default for MSII/Test #7/L55- Sets and Matrices</text>
    </category>
    <info format="html">
      <text></text>
    </info>
    <idnumber></idnumber>
  </question>

<!-- question: 360616  -->
  <question type="formulas">
    <name>
      <text>L55-Addition matrices 2x2</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[\(\mathbf{A}=\begin{bmatrix}{a11}&amp;{a12}\\{a21}&amp;{a22}\end{bmatrix}\)&nbsp;<br>\(\mathbf{B}=\begin{bmatrix}{b11}&amp;{b12}\\{b21}&amp;{b22}\end{bmatrix}\)<br><br>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Both matrices are 2 by 2.<br></p><p dir="ltr" style="text-align: left;">Add the corresponding elements of the matrices.</p><p dir="ltr" style="text-align: left;">\(\mathbf{A+B}=\begin{bmatrix}{{a11}+{b11}}&amp;{{a12}+{b12}}\\{{a21}+{b21}}&amp;{{a22}+{b22}}\end{bmatrix}\)<br></p><p dir="ltr" style="text-align: left;">\(\mathbf{A+B}=\begin{bmatrix}{y11}&amp;{y12}\\{y21}&amp;{y22}\end{bmatrix}\)<br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>a11={-9:9:1};
a12={-9:9:1};
a21={-9:9:1};
a22={-9:9:1};
b11={-9:9:1};
b12={-9:9:1};
b21={-9:9:1};
b22={-9:9:1};
</text>
</varsrandom>
<varsglobal><text>y11=a11+b11;
y12=a12+b12;
y21=a21+b21;
y22=a22+b22;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>4</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[y11,y12,y21,y22]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<table>
    <tbody>
        <tr>
          <td rowspan="2"><strong><span>A+B </span>=</strong></td>
          <td style="border-top: 1px solid black; border-left:1px solid black;"></td>
            <td>{_0}</td>
            <td>{_1}</td>
            <td style="border-top: 1px solid black; border-right:1px solid black;"></td>
        </tr>
        <tr>
            <td style="border-bottom: 1px solid black; border-left:1px solid black;"></td>
            <td>{_2}</td>
            <td>{_3}</td>
            <td style="border-bottom: 1px solid black; border-right:1px solid black;"></td>
        </tr>

    </tbody>
</table>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360617  -->
  <question type="formulas">
    <name>
      <text>L55-Addition matrices 2x3</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[\(\mathbf{A}=\begin{bmatrix}{a11}&amp;{a12}&amp;{a13}\\{a21}&amp;{a22}&amp;{a23}\end{bmatrix}\)&nbsp;<br>\(\mathbf{B}=\begin{bmatrix}{b11}&amp;{b12}&amp;{b13}\\{b21}&amp;{b22}&amp;{b23}\end{bmatrix}\)<br><br>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Both matrices are 2 by 2.<br></p><p dir="ltr" style="text-align: left;">Add the corresponding elements of the matrices.</p><p dir="ltr" style="text-align: left;">\(\mathbf{A+B}=\begin{bmatrix}{{a11}+{b11}}&amp;{{a12}+{b12}}&amp;{{a13}+{b13}}\\{{a21}+{b21}}&amp;{{a22}+{b22}}&amp;{{a23}+{b23}}\end{bmatrix}\)<br></p><p dir="ltr" style="text-align: left;">\(\mathbf{A+B}=\begin{bmatrix}{y11}&amp;{y12}&amp;{y13}\\{y21}&amp;{y22}&amp;{y23}\end{bmatrix}\)<br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>a11={-9:9:1};
a12={-9:9:1};
a13={-9:9:1};
a21={-9:9:1};
a22={-9:9:1};
a23={-9:9:1};
b11={-9:9:1};
b12={-9:9:1};
b13={-9:9:1};
b21={-9:9:1};
b22={-9:9:1};
b23={-9:9:1};
</text>
</varsrandom>
<varsglobal><text>y11=a11+b11;
y12=a12+b12;
y13=a13+b13;
y21=a21+b21;
y22=a22+b22;
y23=a23+b23;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>6</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[y11,y12,y13,y21,y22,y23]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<table>
    <tbody>
        <tr>
            <td rowspan="2"><strong><span>A+B </span>=</strong></td>
            <td style="border-top: 1px solid black; border-left:1px solid black;"></td>
            <td>{_0}</td>
            <td>{_1}</td>
          <td>{_2}</td>
            <td style="border-top: 1px solid black; border-right:1px solid black;"></td>
        </tr>
        <tr>
            <td style="border-bottom: 1px solid black; border-left:1px solid black;"></td>
            <td>{_3}</td>
            <td>{_4}</td>
          <td>{_5}</td>
            <td style="border-bottom: 1px solid black; border-right:1px solid black;"></td>
        </tr>

    </tbody>
</table>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360612  -->
  <question type="formulas">
    <name>
      <text>L55-matrices 2x2</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[\(\mathbf{A}=\begin{bmatrix}{a11}&amp;{a12}\\{a21}&amp;{a22}\end{bmatrix}\)&nbsp;<br>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">It is a 2 by 2 matrix.<br></p><p dir="ltr" style="text-align: left;">The matrix size is the number of rows to the number of columns.</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>a11={-9:9:1};
a12={-9:9:1};
a21={-9:9:1};
a22={-9:9:1};

</text>
</varsrandom>
<varsglobal><text></text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>2</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[2,2]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">The matrix is a {_0} by {_1} matrix<br></p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360613  -->
  <question type="formulas">
    <name>
      <text>L55-matrices 2x3</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[\(\mathbf{A}=\begin{bmatrix}{a11}&amp;{a12}&amp;{a13}\\{a21}&amp;{a22}&amp;{a23}\end{bmatrix}\)&nbsp;<br>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">It is a 2 by 3 matrix.<br></p><p dir="ltr" style="text-align: left;">The matrix has 2 rows and 3 columns.</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>a11={-9:9:1};
a12={-9:9:1};
a13={-9:9:1};
a21={-9:9:1};
a22={-9:9:1};
a23={-9:9:1};

</text>
</varsrandom>
<varsglobal><text></text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>2</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[2,3]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">The matrix is a {_0} by {_1} matrix<br></p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360614  -->
  <question type="formulas">
    <name>
      <text>L55-matrices 3x3</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[\(\mathbf{A}=\begin{bmatrix}{a11}&amp;{a12}&amp;{a13}\\{a21}&amp;{a22}&amp;{a23}\\{a31}&amp;{a32}&amp;{a33}\end{bmatrix}\)&nbsp;<br>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">It is a 3 by 3 matrix.<br></p><p dir="ltr" style="text-align: left;">The matrix has 3 rows and 3 columns.</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>a11={-9:9:1};
a12={-9:9:1};
a13={-9:9:1};
a21={-9:9:1};
a22={-9:9:1};
a23={-9:9:1};
a31={-9:9:1};
a32={-9:9:1};
a33={-9:9:1};
</text>
</varsrandom>
<varsglobal><text></text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>2</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[3,3]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">The matrix is a {_0} by {_1} matrix<br></p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360615  -->
  <question type="formulas">
    <name>
      <text>L55-matrices 3x4</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[\(\mathbf{A}=\begin{bmatrix}{a11}&amp;{a12}&amp;{a13}&amp;{a14}\\{a21}&amp;{a22}&amp;{a23}&amp;{a24}\\{a31}&amp;{a32}&amp;{a33}&amp;{a34}\end{bmatrix}\)&nbsp;<br>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">It is a 3 by 4 matrix.<br></p><p dir="ltr" style="text-align: left;">The matrix has 3 rows and 4 columns.</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>a11={-9:9:1};
a12={-9:9:1};
a13={-9:9:1};
a14={-9:9:1};
a21={-9:9:1};
a22={-9:9:1};
a23={-9:9:1};
a24={-9:9:1};
a31={-9:9:1};
a32={-9:9:1};
a33={-9:9:1};
a34={-9:9:1};</text>
</varsrandom>
<varsglobal><text></text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>2</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[3,4]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">The matrix is a {_0} by {_1} matrix<br></p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360619  -->
  <question type="gapselect">
    <name>
      <text>L55 - set of even numbers</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Choose the numbers that are included in the set of even numbers from 1 to 10. (Enter the numbers from smallest to largest.)</p><p dir="ltr" style="text-align: left;">[[1]] [[8]], [[10]], [[12]], [[14]], [[16]] [[2]]</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">The set of even numbers from 2 to 10 is { 2, 4, 6, 8, 10 }</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <shuffleanswers>0</shuffleanswers>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
    <selectoption>
      <text>{</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>}</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>(</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>)</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>[</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>]</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>1</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>2</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>3</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>4</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>5</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>6</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>7</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>8</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>9</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>10</text>
      <group>2</group>
    </selectoption>
  </question>

<!-- question: 360620  -->
  <question type="gapselect">
    <name>
      <text>L55 - set of odd numbers</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Choose the numbers that are included in the set of odd numbers from 1 to 10. (Enter the numbers from smallest to largest.)</p><p dir="ltr" style="text-align: left;">[[1]] [[7]], [[9]], [[11]], [[13]], [[15]] [[2]]</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">The set of even numbers from 2 to 10 is { 1, 3, 5, 7, 9 }</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <shuffleanswers>0</shuffleanswers>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
    <selectoption>
      <text>{</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>}</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>(</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>)</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>[</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>]</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>1</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>2</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>3</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>4</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>5</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>6</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>7</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>8</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>9</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>10</text>
      <group>2</group>
    </selectoption>
  </question>

<!-- question: 360621  -->
  <question type="matching">
    <name>
      <text>L55- Match set with description</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Match the set with each description</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <shuffleanswers>true</shuffleanswers>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
    <subquestion format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">The set of integers</p>]]></text>
      <answer>
        <text>{..., -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6...}</text>
      </answer>
    </subquestion>
    <subquestion format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">The set of natural or counting numbers</p>]]></text>
      <answer>
        <text>{1, 2, 3, 4, 5, 6, ...}</text>
      </answer>
    </subquestion>
    <subquestion format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">The set of whole numbers</p>]]></text>
      <answer>
        <text>{0, 1, 2, 3, 4, 5,... }</text>
      </answer>
    </subquestion>
  </question>

<!-- question: 360618  -->
  <question type="multichoice">
    <name>
      <text>L55- Sets</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">The symbol placed around a set, or group of items in a collection, is:</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <single>true</single>
    <shuffleanswers>true</shuffleanswers>
    <answernumbering>none</answernumbering>
    <showstandardinstruction>1</showstandardinstruction>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
    <answer fraction="0" format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">( )</p>]]></text>
      <feedback format="html">
        <text><![CDATA[<p dir="ltr" style="text-align: left;">No, this is not correct</p>]]></text>
      </feedback>
    </answer>
    <answer fraction="100" format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">{&nbsp; }</p>]]></text>
      <feedback format="html">
        <text><![CDATA[<p dir="ltr" style="text-align: left;">Correct, Curly brackets are written around the data part of a set.</p>]]></text>
      </feedback>
    </answer>
    <answer fraction="0" format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">[&nbsp; ]</p>]]></text>
      <feedback format="html">
        <text><![CDATA[<p dir="ltr" style="text-align: left;">this is not the correct answer.</p>]]></text>
      </feedback>
    </answer>
    <answer fraction="0" format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">"&nbsp; "</p>]]></text>
      <feedback format="html">
        <text><![CDATA[<p dir="ltr" style="text-align: left;">This is not the correct answer.</p>]]></text>
      </feedback>
    </answer>
  </question>

<!-- question: 0  -->
  <question type="category">
    <category>
      <text>$course$/top/Default for MSII/Test #7/L53- Solve Addition and Subtraction Inequalities</text>
    </category>
    <info format="moodle_auto_format">
      <text></text>
    </info>
    <idnumber></idnumber>
  </question>

<!-- question: 360657  -->
  <question type="formulas">
    <name>
      <text>L53- solve-graph Add inequalities</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[{ques}
Solve for {name}, then graph the solution.<br><br>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text></text>
    </generalfeedback>
    <defaultgrade>2.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text><![CDATA[number1={3:8:1};
ans={0,1,2,3};
choices=shuffle([0,1,2,3]);
name={"A","B","C","D","E","F","G","H","R","S","T","X","Y","Z"};
offset={4:9:1};

]]></text>
</varsrandom>
<varsglobal><text><![CDATA[number2=number1+1;
a=choices[0];
b=choices[1];
c=choices[2];
d=choices[3];
ques=join("",name," + ",offset," ",pick(ans,"&lt;",">","≤","≥")," ",number1+offset);
mcChoices=["a","b","c","d"];
selection = (choices[0]==ans)?0:-1;
selection = (choices[1]==ans)?1:selection;
selection = (choices[2]==ans)?2:selection;
selection = (choices[3]==ans)?3:selection;
letterAns=mcChoices[selection];
feedback=pick(ans,"Less than (&lt;) means to include the numbers with a lower value.  Do not include the value of the number.","Greater than (>) means include the numbers of higher value.  Do not include the value of the number.","Less than or equal to (≤) means to include the number and all numbers that are a smaller value.","Greater than or equal to (≥) means include the number and all numbers of larger value.");
ineq=["&lt;",">","≤","≥"];
FBp1=pick(ans,"less than","greater than","less than","greater than");
test=pick(ans,number1-1,number1+1,number1-1,number1+1);]]></text>
</varsglobal>
<answernumbering><text>none</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>2</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[ans,number1]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">The solution to the inequality is {name} {_0:ineq:MCE} {_1}</p>]]></text>
 </subqtext>
 <feedback format="html">
<text><![CDATA[<p dir="ltr"><br></p>
<table>
    <tbody>
        <tr>
            <td>
                <p dir="ltr">{name} + {offset} {=ineq[ans]} {=number1+offset}</p>
          </td><td></td>
            <td>&nbsp; Given</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr">&nbsp; <span class="" style="color: rgb(255, 51, 102);">- {offset}</span>&nbsp; &nbsp; &nbsp; <span class="" style="color: rgb(255, 51, 102);">-{offset}</span></p>
            </td><td></td>
            <td>Subtract <span class="" style="color: rgb(255, 51, 102);">{offset}</span> from both sides</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr"><strong>{name}&nbsp; {=ineq[ans]} {number1}</strong></p>
            </td><td></td>
            <td>Simplify</td>
        </tr>
        <tr>
            <td colspan="2">
                <h3 style="text-align: left;"><strong><span class="" style="color: rgb(51, 102, 255);">Check the answer</span></strong></h3>
            </td>

        </tr>
        <tr>
            <td>
                <p dir="ltr">{name} + {offset} {=ineq[ans]} {=number1+offset}<br></p>
            </td><td></td>
            <td>Given</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr"><span class="" style="color: rgb(255, 51, 102);">{test} </span>+ {offset} {=ineq[ans]} {=number1+offset}<br></p>
            </td><td></td>
            <td>The inequality is {=ineq[ans]} so <br>choose a number {FBp1} {number1}.<br>In the example I will use <span class="" style="color: rgb(255, 51, 102);">{test}</span> as your substitution.</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr">{=test+offset} {=ineq[ans]} {=number1+offset}<br></p>
            </td><td></td>
            <td>Simplify<br>Since it is a <strong>true </strong>statement, <br>the solution is correct.</td>
        </tr>
       
    </tbody>
</table>]]></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
<answers>
 <partindex>
  <text>1</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>selection</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>choices[_0]==ans</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[Graph the solution of {ques} for the set of Real Numbers.<table>
    <tbody>
        <tr><td>{_0:mcChoices}<br><br><br></td>
            <td>
                <jsxgraph width="500" height="300">var board = JXG.JSXGraph.initBoard(BOARDID, {boundingbox:[-1,22,11,-10], axis:false, ShowCopyright: false, showNavigation:false});
                    let A={a};
                    let B={b};
                    let C={c};
                    let D={d};

                    var numLine = board.create('axis', [[0, 18],[10, 18]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (A===0){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===1){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===2){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===3){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,18.5,"(a)"],{fontSize:15});

                    var numLine = board.create('axis', [[0, 12],[10, 12]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (B===0){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===1){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===2){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===3){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,12.5,"(b)"],{fontSize:15});



                    var numLine = board.create('axis', [[0, 6],[10, 6]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (C===0){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===1){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===2){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===3){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,6.5,"(c)"],{fontSize:15});


                    var numLine = board.create('axis', [[0, 0],[10, 0]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (D===0){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===1){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===2){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===3){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,0.5,"(d)"],{fontSize:15});
                </jsxgraph>
            </td>
            
        </tr>
    </tbody>
</table>]]></text>
 </subqtext>
 <feedback format="html">
<text><![CDATA[{feedback}

The correct graph is:
<jsxgraph width="500" height="100">
    var board = JXG.JSXGraph.initBoard(BOARDID, {boundingbox:[-1,5,11,-10], axis:false, ShowCopyright: false, showNavigation:false}); let A={ans}; var numLine = board.create('axis', [[0, 0],[10, 0]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}}); if (A===0){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:3}); var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'}); var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===1){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'}); var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===2){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===3){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } var tA=board.create('text',[-.7,0.5,"({letterAns})"],{fontSize:15});
</jsxgraph>]]></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360659  -->
  <question type="formulas">
    <name>
      <text>L53- solve-graph Add inequalities</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[{ques}
Solve for {name}, then graph the solution.<br><br>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text></text>
    </generalfeedback>
    <defaultgrade>2.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text><![CDATA[number1={3:8:1};
ans={0,1,2,3};
choices=shuffle([0,1,2,3]);
name={"A","B","C","D","E","F","G","H","R","S","T","X","Y","Z"};
offset={4:9:1};]]></text>
</varsrandom>
<varsglobal><text><![CDATA[number2=number1+1;
a=choices[0];
b=choices[1];
c=choices[2];
d=choices[3];
ques=join("",name," + ",offset," ",pick(ans,"&lt;",">","≤","≥")," ",number1+offset);
mcChoices=["a","b","c","d"];
selection = (choices[0]==ans)?0:-1;
selection = (choices[1]==ans)?1:selection;
selection = (choices[2]==ans)?2:selection;
selection = (choices[3]==ans)?3:selection;
letterAns=mcChoices[selection];
feedback=pick(ans,"Less than (&lt;) means to include the numbers with a lower value.  Do not include the value of the number.","Greater than (>) means include the numbers of higher value.  Do not include the value of the number.","Less than or equal to (≤) means to include the number and all numbers that are a smaller value.","Greater than or equal to (≥) means include the number and all numbers of larger value.");
ineq=["&lt;",">","≤","≥"];
FBp1=pick(ans,"less than","greater than","less than","greater than");
test=pick(ans,number1-1,number1+1,number1-1,number1+1);]]></text>
</varsglobal>
<answernumbering><text>none</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>2</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[ans,number1]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">The solution to the inequality is {name} {_0:ineq:MCE} {_1}</p>]]></text>
 </subqtext>
 <feedback format="html">
<text><![CDATA[<p dir="ltr"><br></p>
<table>
    <tbody>
        <tr>
            <td>
                <p dir="ltr">{name} + {offset} {=ineq[ans]} {=number1+offset}</p>
          </td><td></td>
            <td>&nbsp; Given</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr">&nbsp; <span class="" style="color: rgb(255, 51, 102);">- {offset}</span>&nbsp; &nbsp; &nbsp; <span class="" style="color: rgb(255, 51, 102);">-{offset}</span></p>
            </td><td></td>
            <td>Subtract <span class="" style="color: rgb(255, 51, 102);">{offset}</span> from both sides</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr"><strong>{name}&nbsp; {=ineq[ans]} {number1}</strong></p>
            </td><td></td>
            <td>Simplify</td>
        </tr>
        <tr>
            <td colspan="2">
                <h3 style="text-align: left;"><strong><span class="" style="color: rgb(51, 102, 255);">Check the answer</span></strong></h3>
            </td>

        </tr>
        <tr>
            <td>
                <p dir="ltr">{name} + {offset} {=ineq[ans]} {=number1+offset}<br></p>
            </td><td></td>
            <td>Given</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr"><span class="" style="color: rgb(255, 51, 102);">{test} </span>+ {offset} {=ineq[ans]} {=number1+offset}<br></p>
            </td><td></td>
            <td>The inequality is {=ineq[ans]} so <br>choose a number {FBp1} {number1}.<br>In the example I will use <span class="" style="color: rgb(255, 51, 102);">{test}</span> as your substitution.</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr">{=test+offset} {=ineq[ans]} {=number1+offset}<br></p>
            </td><td></td>
            <td>Simplify<br>Since it is a <strong>true </strong>statement, <br>the solution is correct.</td>
        </tr>
       
    </tbody>
</table>]]></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
<answers>
 <partindex>
  <text>1</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>selection</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>choices[_0]==ans</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[Graph the solution of {ques} for the set of Real Numbers.<table>
    <tbody>
        <tr><td>{_0:mcChoices}<br><br><br></td>
            <td>
                <jsxgraph width="500" height="300">var board = JXG.JSXGraph.initBoard(BOARDID, {boundingbox:[-1,22,11,-10], axis:false, ShowCopyright: false, showNavigation:false});
                    let A={a};
                    let B={b};
                    let C={c};
                    let D={d};

                    var numLine = board.create('axis', [[0, 18],[10, 18]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (A===0){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===1){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===2){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===3){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,18.5,"(a)"],{fontSize:15});

                    var numLine = board.create('axis', [[0, 12],[10, 12]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (B===0){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===1){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===2){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===3){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,12.5,"(b)"],{fontSize:15});



                    var numLine = board.create('axis', [[0, 6],[10, 6]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (C===0){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===1){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===2){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===3){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,6.5,"(c)"],{fontSize:15});


                    var numLine = board.create('axis', [[0, 0],[10, 0]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (D===0){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===1){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===2){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===3){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,0.5,"(d)"],{fontSize:15});
                </jsxgraph>
            </td>
            
        </tr>
    </tbody>
</table>]]></text>
 </subqtext>
 <feedback format="html">
<text><![CDATA[{feedback}

The correct graph is:
<jsxgraph width="500" height="100">
    var board = JXG.JSXGraph.initBoard(BOARDID, {boundingbox:[-1,5,11,-10], axis:false, ShowCopyright: false, showNavigation:false}); let A={ans}; var numLine = board.create('axis', [[0, 0],[10, 0]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}}); if (A===0){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:3}); var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'}); var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===1){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'}); var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===2){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===3){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } var tA=board.create('text',[-.7,0.5,"({letterAns})"],{fontSize:15});
</jsxgraph>]]></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360661  -->
  <question type="formulas">
    <name>
      <text>L53- solve-graph Add inequalities</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[{ques}
Solve for {name}, then graph the solution.<br><br>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text></text>
    </generalfeedback>
    <defaultgrade>2.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text><![CDATA[number1={3:8:1};
ans={0,1,2,3};
choices=shuffle([0,1,2,3]);
name={"A","B","C","D","E","F","G","H","R","S","T","X","Y","Z"};
offset={4:9:1};]]></text>
</varsrandom>
<varsglobal><text><![CDATA[number2=number1+1;
a=choices[0];
b=choices[1];
c=choices[2];
d=choices[3];
ques=join("",name," + ",offset," ",pick(ans,"&lt;",">","≤","≥")," ",number1+offset);
mcChoices=["a","b","c","d"];
selection = (choices[0]==ans)?0:-1;
selection = (choices[1]==ans)?1:selection;
selection = (choices[2]==ans)?2:selection;
selection = (choices[3]==ans)?3:selection;
letterAns=mcChoices[selection];
feedback=pick(ans,"Less than (&lt;) means to include the numbers with a lower value.  Do not include the value of the number.","Greater than (>) means include the numbers of higher value.  Do not include the value of the number.","Less than or equal to (≤) means to include the number and all numbers that are a smaller value.","Greater than or equal to (≥) means include the number and all numbers of larger value.");
ineq=["&lt;",">","≤","≥"];
FBp1=pick(ans,"less than","greater than","less than","greater than");
test=pick(ans,number1-1,number1+1,number1-1,number1+1);]]></text>
</varsglobal>
<answernumbering><text>none</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>2</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[ans,number1]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">The solution to the inequality is {name} {_0:ineq:MCE} {_1}</p>]]></text>
 </subqtext>
 <feedback format="html">
<text><![CDATA[<p dir="ltr"><br></p>
<table>
    <tbody>
        <tr>
            <td>
                <p dir="ltr">{name} + {offset} {=ineq[ans]} {=number1+offset}</p>
          </td><td></td>
            <td>&nbsp; Given</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr">&nbsp; <span class="" style="color: rgb(255, 51, 102);">- {offset}</span>&nbsp; &nbsp; &nbsp; <span class="" style="color: rgb(255, 51, 102);">-{offset}</span></p>
            </td><td></td>
            <td>Subtract <span class="" style="color: rgb(255, 51, 102);">{offset}</span> from both sides</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr"><strong>{name}&nbsp; {=ineq[ans]} {number1}</strong></p>
            </td><td></td>
            <td>Simplify</td>
        </tr>
        <tr>
            <td colspan="2">
                <h3 style="text-align: left;"><strong><span class="" style="color: rgb(51, 102, 255);">Check the answer</span></strong></h3>
            </td>

        </tr>
        <tr>
            <td>
                <p dir="ltr">{name} + {offset} {=ineq[ans]} {=number1+offset}<br></p>
            </td><td></td>
            <td>Given</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr"><span class="" style="color: rgb(255, 51, 102);">{test} </span>+ {offset} {=ineq[ans]} {=number1+offset}<br></p>
            </td><td></td>
            <td>The inequality is {=ineq[ans]} so <br>choose a number {FBp1} {number1}.<br>In the example I will use <span class="" style="color: rgb(255, 51, 102);">{test}</span> as your substitution.</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr">{=test+offset} {=ineq[ans]} {=number1+offset}<br></p>
            </td><td></td>
            <td>Simplify<br>Since it is a <strong>true </strong>statement, <br>the solution is correct.</td>
        </tr>
       
    </tbody>
</table>]]></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
<answers>
 <partindex>
  <text>1</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>selection</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>choices[_0]==ans</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[Graph the solution of {ques} for the set of Real Numbers.<table>
    <tbody>
        <tr><td>{_0:mcChoices}<br><br><br></td>
            <td>
                <jsxgraph width="500" height="300">var board = JXG.JSXGraph.initBoard(BOARDID, {boundingbox:[-1,22,11,-10], axis:false, ShowCopyright: false, showNavigation:false});
                    let A={a};
                    let B={b};
                    let C={c};
                    let D={d};

                    var numLine = board.create('axis', [[0, 18],[10, 18]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (A===0){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===1){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===2){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===3){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,18.5,"(a)"],{fontSize:15});

                    var numLine = board.create('axis', [[0, 12],[10, 12]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (B===0){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===1){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===2){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===3){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,12.5,"(b)"],{fontSize:15});



                    var numLine = board.create('axis', [[0, 6],[10, 6]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (C===0){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===1){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===2){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===3){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,6.5,"(c)"],{fontSize:15});


                    var numLine = board.create('axis', [[0, 0],[10, 0]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (D===0){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===1){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===2){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===3){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,0.5,"(d)"],{fontSize:15});
                </jsxgraph>
            </td>
            
        </tr>
    </tbody>
</table>]]></text>
 </subqtext>
 <feedback format="html">
<text><![CDATA[{feedback}

The correct graph is:
<jsxgraph width="500" height="100">
    var board = JXG.JSXGraph.initBoard(BOARDID, {boundingbox:[-1,5,11,-10], axis:false, ShowCopyright: false, showNavigation:false}); let A={ans}; var numLine = board.create('axis', [[0, 0],[10, 0]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}}); if (A===0){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:3}); var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'}); var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===1){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'}); var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===2){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===3){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } var tA=board.create('text',[-.7,0.5,"({letterAns})"],{fontSize:15});
</jsxgraph>]]></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360658  -->
  <question type="formulas">
    <name>
      <text>L53- solve-graph Subt inequalities</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[{ques}
Solve for {name}, then graph the solution.<br><br>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text></text>
    </generalfeedback>
    <defaultgrade>2.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text><![CDATA[number1={3:8:1};
ans={0,1,2,3};
choices=shuffle([0,1,2,3]);
name={"A","B","C","D","E","F","G","H","R","S","T","X","Y","Z"};
offset={4:9:1};

]]></text>
</varsrandom>
<varsglobal><text><![CDATA[number2=number1+1;
a=choices[0];
b=choices[1];
c=choices[2];
d=choices[3];
ques=join("",name," - ",offset," ",pick(ans,"&lt;",">","≤","≥")," ",number1-offset);
mcChoices=["a","b","c","d"];
selection = (choices[0]==ans)?0:-1;
selection = (choices[1]==ans)?1:selection;
selection = (choices[2]==ans)?2:selection;
selection = (choices[3]==ans)?3:selection;
letterAns=mcChoices[selection];
feedback=pick(ans,"Less than (&lt;) means to include the numbers with a lower value.  Do not include the value of the number.","Greater than (>) means include the numbers of higher value.  Do not include the value of the number.","Less than or equal to (≤) means to include the number and all numbers that are a smaller value.","Greater than or equal to (≥) means include the number and all numbers of larger value.");
ineq=["&lt;",">","≤","≥"];
FBp1=pick(ans,"less than","greater than","less than","greater than");
test=pick(ans,number1-1,number1+1,number1-1,number1+1);]]></text>
</varsglobal>
<answernumbering><text>none</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>2</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[ans,number1]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">The solution to the inequality is {name} {_0:ineq:MCE} {_1}</p>]]></text>
 </subqtext>
 <feedback format="html">
<text><![CDATA[<p dir="ltr"><br></p>
<table>
    <tbody>
        <tr>
            <td>
                <p dir="ltr">{name} - {offset} {=ineq[ans]} {=number1-offset}</p>
            </td>
            <td></td>
            <td>&nbsp; Given</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr">&nbsp; <span class="" style="color: rgb(255, 51, 102);">+ {offset}</span>&nbsp; &nbsp; &nbsp; <span class="" style="color: rgb(255, 51, 102);">+{offset}</span></p>
          </td><td></td>
            <td>Add&nbsp;<span class="" style="color: rgb(255, 51, 102);">{offset}</span> to both sides</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr"><strong>{name}&nbsp; {=ineq[ans]} {number1}</strong></p>
            </td>
            <td></td>
            <td>Simplify</td>
        </tr>
        <tr>
            <td colspan="2">
                <h3 style="text-align: left;"><strong><span class="" style="color: rgb(51, 102, 255);">Check the answer</span></strong></h3>
            </td>

        </tr>
        <tr>
            <td>
                <p dir="ltr">{name} - {offset} {=ineq[ans]} {=number1-offset}<br></p>
            </td>
            <td></td>
            <td>Given</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr"><span class="" style="color: rgb(255, 51, 102);">{test} </span>- {offset} {=ineq[ans]} {=number1-offset}<br></p>
            </td>
            <td></td>
            <td>The inequality is {=ineq[ans]} so <br>choose a number {FBp1} {number1}.<br>In the example I will use <span class="" style="color: rgb(255, 51, 102);">{test}</span> as the substitution.</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr">{=test-offset} {=ineq[ans]} {=number1-offset}<br></p>
            </td>
            <td></td>
            <td>Simplify<br>Since it is a <strong>true </strong>statement, <br>the solution is correct.</td>
        </tr>

    </tbody>
</table>]]></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
<answers>
 <partindex>
  <text>1</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>selection</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>choices[_0]==ans</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[Graph the solution of {ques} for the set of Real Numbers.<table>
    <tbody>
        <tr><td>{_0:mcChoices}<br><br><br></td>
            <td>
                <jsxgraph width="500" height="300">var board = JXG.JSXGraph.initBoard(BOARDID, {boundingbox:[-1,22,11,-10], axis:false, ShowCopyright: false, showNavigation:false});
                    let A={a};
                    let B={b};
                    let C={c};
                    let D={d};

                    var numLine = board.create('axis', [[0, 18],[10, 18]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (A===0){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===1){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===2){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===3){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,18.5,"(a)"],{fontSize:15});

                    var numLine = board.create('axis', [[0, 12],[10, 12]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (B===0){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===1){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===2){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===3){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,12.5,"(b)"],{fontSize:15});



                    var numLine = board.create('axis', [[0, 6],[10, 6]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (C===0){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===1){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===2){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===3){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,6.5,"(c)"],{fontSize:15});


                    var numLine = board.create('axis', [[0, 0],[10, 0]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (D===0){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===1){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===2){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===3){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,0.5,"(d)"],{fontSize:15});
                </jsxgraph>
            </td>
            
        </tr>
    </tbody>
</table>]]></text>
 </subqtext>
 <feedback format="html">
<text><![CDATA[{feedback}

The correct graph is:
<jsxgraph width="500" height="100">
    var board = JXG.JSXGraph.initBoard(BOARDID, {boundingbox:[-1,5,11,-10], axis:false, ShowCopyright: false, showNavigation:false}); let A={ans}; var numLine = board.create('axis', [[0, 0],[10, 0]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}}); if (A===0){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:3}); var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'}); var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===1){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'}); var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===2){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===3){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } var tA=board.create('text',[-.7,0.5,"({letterAns})"],{fontSize:15});
</jsxgraph>]]></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360660  -->
  <question type="formulas">
    <name>
      <text>L53- solve-graph Subt inequalities</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[{ques}
Solve for {name}, then graph the solution.<br><br>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text></text>
    </generalfeedback>
    <defaultgrade>2.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text><![CDATA[number1={3:8:1};
ans={0,1,2,3};
choices=shuffle([0,1,2,3]);
name={"A","B","C","D","E","F","G","H","R","S","T","X","Y","Z"};
offset={4:9:1};]]></text>
</varsrandom>
<varsglobal><text><![CDATA[number2=number1+1;
a=choices[0];
b=choices[1];
c=choices[2];
d=choices[3];
ques=join("",name," - ",offset," ",pick(ans,"&lt;",">","≤","≥")," ",number1-offset);
mcChoices=["a","b","c","d"];
selection = (choices[0]==ans)?0:-1;
selection = (choices[1]==ans)?1:selection;
selection = (choices[2]==ans)?2:selection;
selection = (choices[3]==ans)?3:selection;
letterAns=mcChoices[selection];
feedback=pick(ans,"Less than (&lt;) means to include the numbers with a lower value.  Do not include the value of the number.","Greater than (>) means include the numbers of higher value.  Do not include the value of the number.","Less than or equal to (≤) means to include the number and all numbers that are a smaller value.","Greater than or equal to (≥) means include the number and all numbers of larger value.");
ineq=["&lt;",">","≤","≥"];
FBp1=pick(ans,"less than","greater than","less than","greater than");
test=pick(ans,number1-1,number1+1,number1-1,number1+1);]]></text>
</varsglobal>
<answernumbering><text>none</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>2</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[ans,number1]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">The solution to the inequality is {name} {_0:ineq:MCE} {_1}</p>]]></text>
 </subqtext>
 <feedback format="html">
<text><![CDATA[<p dir="ltr"><br></p>
<table>
    <tbody>
        <tr>
            <td>
                <p dir="ltr">{name} - {offset} {=ineq[ans]} {=number1-offset}</p>
            </td>
            <td></td>
            <td>&nbsp; Given</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr">&nbsp; <span class="" style="color: rgb(255, 51, 102);">+ {offset}</span>&nbsp; &nbsp; &nbsp; <span class="" style="color: rgb(255, 51, 102);">+{offset}</span></p>
          </td><td></td>
            <td>Add&nbsp;<span class="" style="color: rgb(255, 51, 102);">{offset}</span> to both sides</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr"><strong>{name}&nbsp; {=ineq[ans]} {number1}</strong></p>
            </td>
            <td></td>
            <td>Simplify</td>
        </tr>
        <tr>
            <td colspan="2">
                <h3 style="text-align: left;"><strong><span class="" style="color: rgb(51, 102, 255);">Check the answer</span></strong></h3>
            </td>

        </tr>
        <tr>
            <td>
                <p dir="ltr">{name} - {offset} {=ineq[ans]} {=number1-offset}<br></p>
            </td>
            <td></td>
            <td>Given</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr"><span class="" style="color: rgb(255, 51, 102);">{test} </span>- {offset} {=ineq[ans]} {=number1-offset}<br></p>
            </td>
            <td></td>
            <td>The inequality is {=ineq[ans]} so <br>choose a number {FBp1} {number1}.<br>In the example I will use <span class="" style="color: rgb(255, 51, 102);">{test}</span> as the substitution.</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr">{=test-offset} {=ineq[ans]} {=number1-offset}<br></p>
            </td>
            <td></td>
            <td>Simplify<br>Since it is a <strong>true </strong>statement, <br>the solution is correct.</td>
        </tr>

    </tbody>
</table>]]></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
<answers>
 <partindex>
  <text>1</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>selection</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>choices[_0]==ans</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[Graph the solution of {ques} for the set of Real Numbers.<table>
    <tbody>
        <tr><td>{_0:mcChoices}<br><br><br></td>
            <td>
                <jsxgraph width="500" height="300">var board = JXG.JSXGraph.initBoard(BOARDID, {boundingbox:[-1,22,11,-10], axis:false, ShowCopyright: false, showNavigation:false});
                    let A={a};
                    let B={b};
                    let C={c};
                    let D={d};

                    var numLine = board.create('axis', [[0, 18],[10, 18]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (A===0){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===1){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===2){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===3){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,18.5,"(a)"],{fontSize:15});

                    var numLine = board.create('axis', [[0, 12],[10, 12]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (B===0){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===1){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===2){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===3){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,12.5,"(b)"],{fontSize:15});



                    var numLine = board.create('axis', [[0, 6],[10, 6]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (C===0){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===1){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===2){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===3){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,6.5,"(c)"],{fontSize:15});


                    var numLine = board.create('axis', [[0, 0],[10, 0]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (D===0){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===1){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===2){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===3){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,0.5,"(d)"],{fontSize:15});
                </jsxgraph>
            </td>
            
        </tr>
    </tbody>
</table>]]></text>
 </subqtext>
 <feedback format="html">
<text><![CDATA[{feedback}

The correct graph is:
<jsxgraph width="500" height="100">
    var board = JXG.JSXGraph.initBoard(BOARDID, {boundingbox:[-1,5,11,-10], axis:false, ShowCopyright: false, showNavigation:false}); let A={ans}; var numLine = board.create('axis', [[0, 0],[10, 0]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}}); if (A===0){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:3}); var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'}); var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===1){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'}); var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===2){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===3){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } var tA=board.create('text',[-.7,0.5,"({letterAns})"],{fontSize:15});
</jsxgraph>]]></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360662  -->
  <question type="formulas">
    <name>
      <text>L53- solve-graph Subt inequalities</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[{ques}
Solve for {name}, then graph the solution.<br><br>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text></text>
    </generalfeedback>
    <defaultgrade>2.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text><![CDATA[number1={3:8:1};
ans={0,1,2,3};
choices=shuffle([0,1,2,3]);
name={"A","B","C","D","E","F","G","H","R","S","T","X","Y","Z"};
offset={4:9:1};]]></text>
</varsrandom>
<varsglobal><text><![CDATA[number2=number1+1;
a=choices[0];
b=choices[1];
c=choices[2];
d=choices[3];
ques=join("",name," - ",offset," ",pick(ans,"&lt;",">","≤","≥")," ",number1-offset);
mcChoices=["a","b","c","d"];
selection = (choices[0]==ans)?0:-1;
selection = (choices[1]==ans)?1:selection;
selection = (choices[2]==ans)?2:selection;
selection = (choices[3]==ans)?3:selection;
letterAns=mcChoices[selection];
feedback=pick(ans,"Less than (&lt;) means to include the numbers with a lower value.  Do not include the value of the number.","Greater than (>) means include the numbers of higher value.  Do not include the value of the number.","Less than or equal to (≤) means to include the number and all numbers that are a smaller value.","Greater than or equal to (≥) means include the number and all numbers of larger value.");
ineq=["&lt;",">","≤","≥"];
FBp1=pick(ans,"less than","greater than","less than","greater than");
test=pick(ans,number1-1,number1+1,number1-1,number1+1);]]></text>
</varsglobal>
<answernumbering><text>none</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>2</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[ans,number1]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">The solution to the inequality is {name} {_0:ineq:MCE} {_1}</p>]]></text>
 </subqtext>
 <feedback format="html">
<text><![CDATA[<p dir="ltr"><br></p>
<table>
    <tbody>
        <tr>
            <td>
                <p dir="ltr">{name} - {offset} {=ineq[ans]} {=number1-offset}</p>
            </td>
            <td></td>
            <td>&nbsp; Given</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr">&nbsp; <span class="" style="color: rgb(255, 51, 102);">+ {offset}</span>&nbsp; &nbsp; &nbsp; <span class="" style="color: rgb(255, 51, 102);">+{offset}</span></p>
          </td><td></td>
            <td>Add&nbsp;<span class="" style="color: rgb(255, 51, 102);">{offset}</span> to both sides</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr"><strong>{name}&nbsp; {=ineq[ans]} {number1}</strong></p>
            </td>
            <td></td>
            <td>Simplify</td>
        </tr>
        <tr>
            <td colspan="2">
                <h3 style="text-align: left;"><strong><span class="" style="color: rgb(51, 102, 255);">Check the answer</span></strong></h3>
            </td>

        </tr>
        <tr>
            <td>
                <p dir="ltr">{name} - {offset} {=ineq[ans]} {=number1-offset}<br></p>
            </td>
            <td></td>
            <td>Given</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr"><span class="" style="color: rgb(255, 51, 102);">{test} </span>- {offset} {=ineq[ans]} {=number1-offset}<br></p>
            </td>
            <td></td>
            <td>The inequality is {=ineq[ans]} so <br>choose a number {FBp1} {number1}.<br>In the example I will use <span class="" style="color: rgb(255, 51, 102);">{test}</span> as the substitution.</td>
        </tr>
        <tr>
            <td>
                <p dir="ltr">{=test-offset} {=ineq[ans]} {=number1-offset}<br></p>
            </td>
            <td></td>
            <td>Simplify<br>Since it is a <strong>true </strong>statement, <br>the solution is correct.</td>
        </tr>

    </tbody>
</table>]]></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
<answers>
 <partindex>
  <text>1</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>selection</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>choices[_0]==ans</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[Graph the solution of {ques} for the set of Real Numbers.<table>
    <tbody>
        <tr><td>{_0:mcChoices}<br><br><br></td>
            <td>
                <jsxgraph width="500" height="300">var board = JXG.JSXGraph.initBoard(BOARDID, {boundingbox:[-1,22,11,-10], axis:false, ShowCopyright: false, showNavigation:false});
                    let A={a};
                    let B={b};
                    let C={c};
                    let D={d};

                    var numLine = board.create('axis', [[0, 18],[10, 18]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (A===0){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===1){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===2){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (A===3){
                    var pA1=board.create('point',[{number1},18],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,18],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,18.5,"(a)"],{fontSize:15});

                    var numLine = board.create('axis', [[0, 12],[10, 12]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (B===0){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===1){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===2){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (B===3){
                    var pA1=board.create('point',[{number1},12],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,12],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,12.5,"(b)"],{fontSize:15});



                    var numLine = board.create('axis', [[0, 6],[10, 6]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (C===0){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===1){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===2){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (C===3){
                    var pA1=board.create('point',[{number1},6],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,6],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,6.5,"(c)"],{fontSize:15});


                    var numLine = board.create('axis', [[0, 0],[10, 0]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}});


                    if (D===0){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:3});
                    var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===1){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});
                    var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'});
                    var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===2){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    } else if (D===3){
                    var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""});

                    var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0});
                    var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'});
                    }
                    var tA=board.create('text',[-.7,0.5,"(d)"],{fontSize:15});
                </jsxgraph>
            </td>
            
        </tr>
    </tbody>
</table>]]></text>
 </subqtext>
 <feedback format="html">
<text><![CDATA[{feedback}

The correct graph is:
<jsxgraph width="500" height="100">
    var board = JXG.JSXGraph.initBoard(BOARDID, {boundingbox:[-1,5,11,-10], axis:false, ShowCopyright: false, showNavigation:false}); let A={ans}; var numLine = board.create('axis', [[0, 0],[10, 0]], {firstArrow: true,lastArrow: true,ticks: {insertTicks: false,drawZero: true,majorHeight: 4,minorHeight: 0,minorTicks: 1,tickEndings: [5, 6],ticksDistance: 1,strokeColor: '#121212',label: {offset: [-.5, -20]}}}); if (A===0){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:3}); var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'}); var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===1){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA1w=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:"",size:1,strokeColor:'#FFFFFF',fillColor:'#FFFFFF'}); var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===2){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA0=board.create('point',[0,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } else if (A===3){ var pA1=board.create('point',[{number1},0],{fixed:true,showInfobox:false,name:""}); var pA0=board.create('point',[10,0],{fixed:true,showInfobox:false,name:"",size:0}); var l1=board.create('line',[pA1,pA0],{firstArrow:false,lastArrow:true,straightFirst:false,straightLast:false,strokeColor:'#FF0000'}); } var tA=board.create('text',[-.7,0.5,"({letterAns})"],{fontSize:15});
</jsxgraph>]]></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 0  -->
  <question type="category">
    <category>
      <text>$course$/top/Default for MSII/Test #7/L54-Proportions</text>
    </category>
    <info format="html">
      <text></text>
    </info>
    <idnumber></idnumber>
  </question>

<!-- question: 360670  -->
  <question type="formulas">
    <name>
      <text>L54 - proportion-missing Num</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<h3 style="text-align: left;">Find the missing numerator</h3><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<h3 style="text-align: left;">Use the <span class="" style="color: rgb(255, 51, 102);">identity property of multiplication</span>.</h3>
<p>A number multiplied by one equals the number.&nbsp; (7 • 1 = 7)<br></p>
<p></p>
<p><span class="" style="color: rgb(255, 51, 102);">\(\frac{{factor}}{{factor}}\) = 1</span></p>

<p style="text-align: left;">\( \frac{{num}}{{den}} \)&nbsp;•<span class="" style="color: rgb(255, 51, 102);">&nbsp;\(\frac{{factor}}{{factor}}\) </span>=&nbsp;\(  \frac{{ansNum}}{{ansDen}}  \)</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>factor={2,3,4,5,6,7,8,9,10};
randFrac={[1,2],[1,3],[2,3],[1,4],[2,4],[3,4],[1,5],[1,6],[1,8],[1,9],[1,10],[2,3],[3,4],[2,5],[5,6],[3,8],[2,9],[3,10],[3,5],[5,8],[4,9],[7,8],[7,9],[9,10],[4,5],[2,6],[3,6],[4,6],[5,6]};</text>
</varsrandom>
<varsglobal><text>num=randFrac[0];
den=randFrac[1];
ansNum=num*factor;
ansDen=den*factor;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>ansNum</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<table>
    <tbody>
        <tr>
            <td></td>
            <td>
                <table>
                    <tbody>
                        <tr>
                            <td style="text-align: center; border-bottom: 1px solid black;">{num}</td>
                        </tr><tr>
                            <td style="text-align: center;">{den}</td>
                        </tr>
                    </tbody>
                </table>
            </td>
            <td> = </td>
            <td>
                <table>
                    <tbody>
                        <tr>
                            <td style="text-align: center; border-bottom: 1px solid black;">{_0}</td>
                        </tr>
                        <tr>
                            <td style="text-align: center;">{=den*factor}</td>
                        </tr>
                    </tbody>
                </table>
            </td>


        </tr>
    </tbody>
</table>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360672  -->
  <question type="formulas">
    <name>
      <text>L54- equal or not?</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Determine if the ratios are equal.</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;"></p>
<table>
    <tbody>
        <tr>
            <td style="text-align: center; border-bottom: 1px solid black;"><span class="" style="color: rgb(255, 51, 102);">{a}</span></td>
            <td rowspan="2">{=choice[ans]}</td>
            <td style="text-align: center; border-bottom: 1px solid black;"><span class="" style="color: rgb(51, 102, 255);">{c}</span></td>
        </tr>
        <tr>
            <td style="text-align: center;"><span class="" style="color: rgb(51, 102, 255);">{b}</span></td>
            <td style="text-align: center;"><span class="" style="color: rgb(255, 51, 102);">{d}</span></td>
        </tr>
    </tbody>
</table><br>
<p></p>
<p dir="ltr" style="text-align: left;">Determine if the cross products are equal.</p>
<p dir="ltr" style="text-align: left;"><span class="" style="color: rgb(255, 51, 102);">({d})({a}) = {=d*a}</span></p>
<p dir="ltr" style="text-align: left;"><span class="" style="color: rgb(51, 102, 255);">({b})({c}) = {=c*b}</span></p>
<p dir="ltr" style="text-align: left;">Since <span class="" style="color: rgb(255, 51, 102);">{=d*a}</span>&nbsp;{=choice[ans]}&nbsp;<span class="" style="color: rgb(51, 102, 255);">{=c*b}</span>, the answer is {=choice[ans]}<br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>a={1:10:1};
b={1:10:1};
c={1:10:1};
d={1:10:1};
equal={0,1};
factor={1:10:1}</text>
</varsrandom>
<varsglobal><text><![CDATA[c=(equal==0)?c:a*factor;
d=(equal==0)?d:b*factor;
choice=["≠","="];
ans=((a*d)==(b*c))?1:0;]]></text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>ans</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<table>
    <tbody>
        <tr>
            <td style="text-align: center; border-bottom: 1px solid black;">{a}</td>
            <td rowspan="2"> {_0:choice:MCE} </td>
            <td style="text-align: center; border-bottom: 1px solid black;">{c}</td>
        </tr>
        <tr>
            <td style="text-align: center;">{b}</td>
            <td style="text-align: center;">{d}</td>
        </tr>
    </tbody>
</table>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360674  -->
  <question type="formulas">
    <name>
      <text>L54- find missing den</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Solve each proportion.</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;"></p>
<table>
    <tbody>
        <tr>
            <td style="text-align: center; border-bottom: 1px solid black;"><span class="" style="color: rgb(255, 51, 102);">{a}</span></td>
            <td rowspan="2">&nbsp;=</td>
            <td style="text-align: center; border-bottom: 1px solid black;"><span class="" style="color: rgb(51, 102, 255);">{c}</span></td>
        </tr>
        <tr>
            <td style="text-align: center;"><span class="" style="color: rgb(51, 102, 255);">{var}</span></td>
            <td style="text-align: center;"><span class="" style="color: rgb(255, 51, 102);">{d}</span></td>
        </tr>
    </tbody>
</table>The cross products of a proportion are equal.<br>
<p></p>
<p dir="ltr" style="text-align: left;"><span style="color: rgb(255, 51, 102); font-size: 0.9375rem;">({d})({a}) <span class="" style="color: rgb(51, 51, 51);">=&nbsp;</span></span><span style="color: rgb(51, 102, 255); font-size: 0.9375rem;">{c}{var}</span></p><p dir="ltr" style="text-align: left;"><span style="color: rgb(51, 51, 51); font-size: 0.9375rem;" class="">{da} = {c}{var}</span></p><p dir="ltr" style="text-align: left;"><span style="color: rgb(51, 51, 51); font-size: 0.9375rem;" class="">\(\frac{{da}}{{c}}\) = \(\frac{{c}{var}}{{c}}\)&nbsp; &nbsp;Divide both sides by {c}</span></p><p dir="ltr" style="text-align: left;"><strong>{b}</strong> = {var}</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text><![CDATA[a={1:10:1};
b={1:10:1};
c={1:10:1};
d={1:10:1};

factor={1:10:1};
var={"x","y","z","a","b","c","d","m","n","p","r"};]]></text>
</varsrandom>
<varsglobal><text><![CDATA[equal=1;
c=(equal==0)?c:a*factor;
d=(equal==0)?d:b*factor;
choice=["≠","="];
ans=((a*d)==(b*c))?1:0;
da=d*a;]]></text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>b</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<table>
    <tbody>
        <tr>
            <td style="text-align: center; border-bottom: 1px solid black;">{a}</td>
            <td rowspan="2">&nbsp;=&nbsp;</td>
            <td style="text-align: center; border-bottom: 1px solid black;">{c}</td>
        </tr>
        <tr>
            <td style="text-align: center;">{var}</td>
            <td style="text-align: center;">{d}</td>
        </tr>
    </tbody>
</table><br>{var} = {_0}<br>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360678  -->
  <question type="formulas">
    <name>
      <text>L54- find missing den(decimal Num)</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Solve each proportion.</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;"></p>
<table>
    <tbody>
        <tr>
            <td style="text-align: center; border-bottom: 1px solid black;"><span class="" style="color: rgb(255, 51, 102);">{a}</span></td>
            <td rowspan="2">&nbsp;=</td>
            <td style="text-align: center; border-bottom: 1px solid black;"><span class="" style="color: rgb(51, 102, 255);">{c}</span></td>
        </tr>
        <tr>
            <td style="text-align: center;"><span class="" style="color: rgb(51, 102, 255);">{var}</span></td>
            <td style="text-align: center;"><span class="" style="color: rgb(255, 51, 102);">{d}</span></td>
        </tr>
    </tbody>
</table>The cross products of a proportion are equal.<br>
<p></p>
<p dir="ltr" style="text-align: left;"><span style="color: rgb(255, 51, 102); font-size: 0.9375rem;">({d})({a}) <span class="" style="color: rgb(51, 51, 51);">=&nbsp;</span></span><span style="color: rgb(51, 102, 255); font-size: 0.9375rem;">{c}{var}</span></p><p dir="ltr" style="text-align: left;"><span style="color: rgb(51, 51, 51); font-size: 0.9375rem;" class="">{da} = {c}{var}</span></p><p dir="ltr" style="text-align: left;"><span style="color: rgb(51, 51, 51); font-size: 0.9375rem;" class="">\(\frac{{da}}{{c}}\) = \(\frac{{c}{var}}{{c}}\)&nbsp; &nbsp;Divide both sides by {c}</span></p><p dir="ltr" style="text-align: left;"><strong>{b}</strong> = {var}</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text><![CDATA[a={1:10:1};
b={1:10:.1};
c={1:10:1};
d={1:10:1};

factor={1:10:1};
var={"x","y","z","a","b","c","d","m","n","p","r"};]]></text>
</varsrandom>
<varsglobal><text><![CDATA[equal=1;
c=(equal==0)?c:a*factor;
d=(equal==0)?d:b*factor;
choice=["≠","="];
ans=((a*d)==(b*c))?1:0;
da=d*a;]]></text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>b</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<table>
    <tbody>
        <tr>
            <td style="text-align: center; border-bottom: 1px solid black;">{a}</td>
            <td rowspan="2">&nbsp;=&nbsp;</td>
            <td style="text-align: center; border-bottom: 1px solid black;">{c}</td>
        </tr>
        <tr>
            <td style="text-align: center;">{var}</td>
            <td style="text-align: center;">{d}</td>
        </tr>
    </tbody>
</table><br>{var} = {_0}<br>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360676  -->
  <question type="formulas">
    <name>
      <text>L54- find missing den-Right</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Solve each proportion.</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;"></p>
<table>
    <tbody>
        <tr>
            <td style="text-align: center; border-bottom: 1px solid black;"><span class="" style="color: rgb(255, 51, 102);">{a}</span></td>
            <td rowspan="2">&nbsp;=</td>
            <td style="text-align: center; border-bottom: 1px solid black;"><span class="" style="color: rgb(51, 102, 255);">{c}</span></td>
        </tr>
        <tr>
            <td style="text-align: center;"><span class="" style="color: rgb(51, 102, 255);">{b}</span></td>
            <td style="text-align: center;"><span class="" style="color: rgb(255, 51, 102);">{var}</span></td>
        </tr>
    </tbody>
</table>The cross products of a proportion are equal.<br>
<p></p>
<p dir="ltr" style="text-align: left;"><span style="color: rgb(255, 51, 102); font-size: 0.9375rem;">{a}{var}&nbsp;<span class="" style="color: rgb(51, 51, 51);">= <span class="" style="color: rgb(51, 102, 255);">(</span></span></span><span style="color: rgb(51, 102, 255); font-size: 0.9375rem;">{c})({b})</span></p><p dir="ltr" style="text-align: left;"><span style="color: rgb(51, 51, 51); font-size: 0.9375rem;" class="">{a}{var} = {cb}</span></p><p dir="ltr" style="text-align: left;"><span style="color: rgb(51, 51, 51); font-size: 0.9375rem;" class="">\(\frac{{a}{var}}{{a}}\) = \(\frac{{cb}}{{a}}\)&nbsp; &nbsp;Divide both sides by {a}</span></p><p dir="ltr" style="text-align: left;">{var} = {d}</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text><![CDATA[a={1:10:1};
b={1:10:1};
c={1:10:1};
d={1:10:1};

factor={1:10:1};
var={"x","y","z","a","b","c","d","m","n","p","r"};]]></text>
</varsrandom>
<varsglobal><text><![CDATA[equal=1;
c=(equal==0)?c:a*factor;
d=(equal==0)?d:b*factor;
choice=["≠","="];
ans=((a*d)==(b*c))?1:0;
da=d*a;
cb=c*b;]]></text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>d</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<table>
    <tbody>
        <tr>
            <td style="text-align: center; border-bottom: 1px solid black;">{a}</td>
            <td rowspan="2">&nbsp;=&nbsp;</td>
            <td style="text-align: center; border-bottom: 1px solid black;">{c}</td>
        </tr>
        <tr>
            <td style="text-align: center;">{b}</td>
            <td style="text-align: center;">{var}</td>
        </tr>
    </tbody>
</table><br>{var} = {_0}<br>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360675  -->
  <question type="formulas">
    <name>
      <text>L54- find missing num</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Solve each proportion.</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;"></p>
<table>
    <tbody>
        <tr>
            <td style="text-align: center; border-bottom: 1px solid black;"><span class="" style="color: rgb(255, 51, 102);">{var}</span></td>
            <td rowspan="2">&nbsp;=</td>
            <td style="text-align: center; border-bottom: 1px solid black;"><span class="" style="color: rgb(51, 102, 255);">{c}</span></td>
        </tr>
        <tr>
            <td style="text-align: center;"><span class="" style="color: rgb(51, 102, 255);">{b}</span></td>
            <td style="text-align: center;"><span class="" style="color: rgb(255, 51, 102);">{d}</span></td>
        </tr>
    </tbody>
</table>The cross products of a proportion are equal.<br>
<p></p>
<p dir="ltr" style="text-align: left;"><span style="color: rgb(255, 51, 102); font-size: 0.9375rem;">({d}){var}&nbsp;<span class="" style="color: rgb(51, 51, 51);">= <span class="" style="color: rgb(51, 102, 255);">(</span></span></span><span style="color: rgb(51, 102, 255); font-size: 0.9375rem;">{c})({b})</span></p><p dir="ltr" style="text-align: left;"><span style="color: rgb(51, 102, 255); font-size: 0.9375rem;">{d}{var} = {=bc}</span></p><p dir="ltr" style="text-align: left;"><span style="color: rgb(51, 51, 51); font-size: 0.9375rem;" class="">\(\frac{{d}{var}}{{d}}\) = \(\frac{({bc})}{{d}}\)&nbsp; &nbsp;Divide both sides by {d}</span></p><p dir="ltr" style="text-align: left;"><strong>{var}</strong> = {a}</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text><![CDATA[a={1:10:1};
b={1:10:1};
c={1:10:1};
d={1:10:1};

factor={1:10:1};
var={"x","y","z","a","b","c","d","m","n","p","r"};]]></text>
</varsrandom>
<varsglobal><text><![CDATA[equal=1;
c=(equal==0)?c:a*factor;
d=(equal==0)?d:b*factor;
choice=["≠","="];
ans=((a*d)==(b*c))?1:0;
da=d*a;
bc=b*c;]]></text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>a</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<table>
    <tbody>
        <tr>
            <td style="text-align: center; border-bottom: 1px solid black;">{var}</td>
            <td rowspan="2">&nbsp;=&nbsp;</td>
            <td style="text-align: center; border-bottom: 1px solid black;">{c}</td>
        </tr>
        <tr>
            <td style="text-align: center;">{b}</td>
            <td style="text-align: center;">{d}</td>
        </tr>
    </tbody>
</table><br>{var} = {_0}<br>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360679  -->
  <question type="formulas">
    <name>
      <text>L54- find missing num (decimal num)</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Solve each proportion.</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;"></p>
<table>
    <tbody>
        <tr>
            <td style="text-align: center; border-bottom: 1px solid black;"><span class="" style="color: rgb(255, 51, 102);">{var}</span></td>
            <td rowspan="2">&nbsp;=</td>
            <td style="text-align: center; border-bottom: 1px solid black;"><span class="" style="color: rgb(51, 102, 255);">{c}</span></td>
        </tr>
        <tr>
            <td style="text-align: center;"><span class="" style="color: rgb(51, 102, 255);">{b}</span></td>
            <td style="text-align: center;"><span class="" style="color: rgb(255, 51, 102);">{d}</span></td>
        </tr>
    </tbody>
</table>The cross products of a proportion are equal.<br>
<p></p>
<p dir="ltr" style="text-align: left;"><span style="color: rgb(255, 51, 102); font-size: 0.9375rem;">({d}){var}&nbsp;<span class="" style="color: rgb(51, 51, 51);">= <span class="" style="color: rgb(51, 102, 255);">(</span></span></span><span style="color: rgb(51, 102, 255); font-size: 0.9375rem;">{c})({b})</span></p><p dir="ltr" style="text-align: left;"><span style="color: rgb(51, 102, 255); font-size: 0.9375rem;">{d}{var} = {=bc}</span></p><p dir="ltr" style="text-align: left;"><span style="color: rgb(51, 51, 51); font-size: 0.9375rem;" class="">\(\frac{{d}{var}}{{d}}\) = \(\frac{({bc})}{{d}}\)&nbsp; &nbsp;Divide both sides by {d}</span></p><p dir="ltr" style="text-align: left;"><strong>{var}</strong> = {a}</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text><![CDATA[a={1:10:1};
b={1:10:1};
c={1:10:1};
d={1:10:1};

factor={1:10:.1};
var={"x","y","z","a","b","c","d","m","n","p","r"};]]></text>
</varsrandom>
<varsglobal><text><![CDATA[equal=1;
c=(equal==0)?c:a*factor;
d=(equal==0)?d:b*factor;
choice=["≠","="];
ans=((a*d)==(b*c))?1:0;
da=d*a;
bc=b*c;]]></text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>a</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<table>
    <tbody>
        <tr>
            <td style="text-align: center; border-bottom: 1px solid black;">{var}</td>
            <td rowspan="2">&nbsp;=&nbsp;</td>
            <td style="text-align: center; border-bottom: 1px solid black;">{c}</td>
        </tr>
        <tr>
            <td style="text-align: center;">{b}</td>
            <td style="text-align: center;">{d}</td>
        </tr>
    </tbody>
</table><br>{var} = {_0}<br>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360677  -->
  <question type="formulas">
    <name>
      <text>L54- find missing num-Right</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Solve each proportion.</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;"></p>
<table>
    <tbody>
        <tr>
            <td style="text-align: center; border-bottom: 1px solid black;"><span class="" style="color: rgb(255, 51, 102);">{a}</span></td>
            <td rowspan="2">&nbsp;=</td>
            <td style="text-align: center; border-bottom: 1px solid black;"><span class="" style="color: rgb(51, 102, 255);">{var}</span></td>
        </tr>
        <tr>
            <td style="text-align: center;"><span class="" style="color: rgb(51, 102, 255);">{b}</span></td>
            <td style="text-align: center;"><span class="" style="color: rgb(255, 51, 102);">{d}</span></td>
        </tr>
    </tbody>
</table>The cross products of a proportion are equal.<br>
<p></p>
<p dir="ltr" style="text-align: left;"><span style="color: rgb(255, 51, 102); font-size: 0.9375rem;">({d})({a})&nbsp;<span class="" style="color: rgb(51, 51, 51);">= </span></span><span style="color: rgb(51, 102, 255); font-size: 0.9375rem;">{b}{var}</span></p><p dir="ltr" style="text-align: left;"><span style="color: rgb(51, 102, 255); font-size: 0.9375rem;">{da} = {b}{var}</span></p><p dir="ltr" style="text-align: left;"><span style="color: rgb(51, 51, 51); font-size: 0.9375rem;" class="">\(\frac{{da}}{{b}}\) = \(\frac{{b}{var}}{{b}}\)&nbsp; &nbsp;Divide both sides by {b}</span></p><p dir="ltr" style="text-align: left;"><strong>{var}</strong> = {c}</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text><![CDATA[a={1:10:1};
b={1:10:1};
c={1:10:1};
d={1:10:1};

factor={1:10:1};
var={"x","y","z","a","b","c","d","m","n","p","r"};]]></text>
</varsrandom>
<varsglobal><text><![CDATA[equal=1;
c=(equal==0)?c:a*factor;
d=(equal==0)?d:b*factor;
choice=["≠","="];
ans=((a*d)==(b*c))?1:0;
da=d*a;
bc=b*c;]]></text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>c</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<table>
    <tbody>
        <tr>
            <td style="text-align: center; border-bottom: 1px solid black;">{a}</td>
            <td rowspan="2">&nbsp;=&nbsp;</td>
            <td style="text-align: center; border-bottom: 1px solid black;">{var}</td>
        </tr>
        <tr>
            <td style="text-align: center;">{b}</td>
            <td style="text-align: center;">{d}</td>
        </tr>
    </tbody>
</table><br>{var} = {_0}<br>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360673  -->
  <question type="formulas">
    <name>
      <text>L54- Proportion - missing Denominator</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">The ratio of {units[0]} to {units[1]} is&nbsp;{b} to&nbsp;{totb}.&nbsp; How many {units[1]} are there if there are {ansNum} {units[0]}?</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<table>
    <tbody>

        <tr>
            <td>
                <table>
                    <tbody>
                        <tr>
                            <td style="border-bottom:1px solid black"><span class="" style="color: rgb(0, 61, 245);">{b} {units[0]}&nbsp;</span></td>
                        </tr>
                        <tr>
                            <td><span class="" style="color: rgb(255, 51, 102);">{totb} {units[1]}</span></td>
                        </tr>
                    </tbody>
                </table><br>
            </td>
            <td>=</td>
            <td>
                <table>
                    <tbody>
                        <tr>
                            <td style="border-bottom:1px solid black"><span class="" style="color: rgb(255, 51, 102);">{ansNum} {units[0]}&nbsp;</span></td>
                        </tr>
                        <tr>
                            <td><span class="" style="color: rgb(0, 61, 245);">x {units[1]}</span></td>
                        </tr>
                    </tbody>
                </table><br>
            </td>
            <td>Set up a proportion to determine the number of {units[0]}</td>
        </tr>
        <tr>
            <td><br><span class="" style="color: rgb(0, 61, 245);">(x)({b})</span>&nbsp;= <span class="" style="color: rgb(255, 51, 102);">({totb})({ansNum})</span></td>
            <td></td>
            <td></td>
            <td>Since the cross products must be equal.<br>Determine the cross products</td>
        </tr>
        <tr>
            <td><br><span class="" style="color: rgb(0, 61, 245);">{b}x</span>&nbsp;= <span class="" style="color: rgb(255, 51, 102);">({totbNum})</span></td>
            <td></td>
            <td></td>
            <td>Simplify</td>
        </tr>
        <tr>
            <td><span class="" style="color: rgb(51, 51, 51);">\(\frac{({b}x)}{{b}}\)</span><span class="" style="color: rgb(51, 51, 51);">&nbsp;= </span><span class="" style="color: rgb(51, 51, 51);">\(\frac{{totbNum}}{{b}}\)</span></td>
            <td></td>
            <td></td>
            <td>Solve for the unknown amount by dividing both sides by {b}.</td>
        </tr>
         <tr>
            <td><span class="" style="color: rgb(51, 51, 51);">x = {ansDen}</span></td>
            <td></td>
            <td></td>
            <td>Simplify</td>
        </tr>
    </tbody>
</table>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text><![CDATA[a={1:11:1};
b={2:11:1};
factor={2:11:1};
units={["wins","loses","total games"],["loses","wins","total games"],["blue cars","grey cars","total cars"],["men","woman","people"],["youth tickets","adult tickets","total tickets"],["child tickets","adult tickets","total tickets"],["girls","boys","total students"],["cups sugar","cups water","total cups"]};
factor={10:25};]]></text>
</varsrandom>
<varsglobal><text>first=a*b;
second=b*factor;
GCF=gcd(first,second);
a=first/GCF;
den=second/GCF;

b=first;
totb=first+second;
GCFb=gcd(b,totb);
b=first/GCFb;
totb=totb/GCFb;
ansDen=factor*totb;
ansNum=factor*b;
ansDenb=ansDen*b;
totbNum=totb*ansNum;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>ansDen</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text><![CDATA[_err < 0.01]]></text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[There are {_0} {units[1]}<br>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360671  -->
  <question type="formulas">
    <name>
      <text>L54- Proportion - missing Numerator</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">The ratio of {units[0]} to {units[1]} is&nbsp;{b} to&nbsp;{totb}.&nbsp; How many {units[0]} are there if there are {ansDen} {units[1]}?</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<table>
    <tbody>

        <tr>
            <td>
                <table>
                    <tbody>
                        <tr>
                            <td style="border-bottom:1px solid black"><span class="" style="color: rgb(0, 61, 245);">{b} {units[0]}&nbsp;</span></td>
                        </tr>
                        <tr>
                            <td><span class="" style="color: rgb(255, 51, 102);">{totb} {units[2]}</span></td>
                        </tr>
                    </tbody>
                </table><br>
            </td>
            <td>=</td>
            <td>
                <table>
                    <tbody>
                        <tr>
                            <td style="border-bottom:1px solid black"><span class="" style="color: rgb(255, 51, 102);">x {units[0]}&nbsp;</span></td>
                        </tr>
                        <tr>
                            <td><span class="" style="color: rgb(0, 61, 245);">{ansDen} {units[2]}</span></td>
                        </tr>
                    </tbody>
                </table><br>
            </td>
            <td>Set up a proportion to determine the number of {units[0]}</td>
        </tr>
        <tr>
            <td><br><span class="" style="color: rgb(0, 61, 245);">({ansDen})({b})</span>&nbsp;= <span class="" style="color: rgb(255, 51, 102);">({totb})(x)</span></td>
            <td></td>
            <td></td>
            <td>Since the cross products must be equal.<br>Determine the cross products</td>
        </tr>
        <tr>
            <td><br><span class="" style="color: rgb(0, 61, 245);">{ansDenb}</span>&nbsp;= <span class="" style="color: rgb(255, 51, 102);">({totb})(x)</span></td>
            <td></td>
            <td></td>
            <td>Simplify</td>
        </tr>
        <tr>
            <td><span class="" style="color: rgb(51, 51, 51);">\(\frac{({ansDenb})}{{totb}}\)</span><span class="" style="color: rgb(51, 51, 51);">&nbsp;= </span><span class="" style="color: rgb(51, 51, 51);">\(\frac{({totb})(x)}{totb}\)</span></td>
            <td></td>
            <td></td>
            <td>Solve for the unknown amount by dividing both sides by {totb}.</td>
        </tr>
         <tr>
            <td><span class="" style="color: rgb(51, 51, 51);">{ansNum}</span><span class="" style="color: rgb(51, 51, 51);">= </span><span class="" style="color: rgb(51, 51, 51);">x</span></td>
            <td></td>
            <td></td>
            <td>Simplify</td>
        </tr>
    </tbody>
</table>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text><![CDATA[a={1:11:1};
b={2:11:1};
den={2:11:1};
units={["wins","loses","total games"],["loses","wins","total games"],["blue cars","grey cars","total cars"],["men","woman","people"],["youth tickets","adult tickets","total tickets"],["child tickets","adult tickets","total tickets"],["girls","boys","total students"],["cups sugar","cups water","total cups"]};
factor={10:25};]]></text>
</varsrandom>
<varsglobal><text>first=a*b;
second=b*den;
GCF=gcd(first,second);
a=first/GCF;
den=second/GCF;

b=first;
totb=first+second;
GCFb=gcd(b,totb);
b=first/GCFb;
totb=totb/GCFb;
ansDen=factor*totb;
ansNum=factor*b;
ansDenb=ansDen*b;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>ansNum</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text><![CDATA[_err < 0.01]]></text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[There are {_0} {units[0]}<br>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 0  -->
  <question type="category">
    <category>
      <text>$course$/top/Default for MSII/Test #7/L55- Sets and Matrices/L55- Addition of Matrices</text>
    </category>
    <info format="html">
      <text></text>
    </info>
    <idnumber></idnumber>
  </question>

<!-- question: 360726  -->
  <question type="formulas">
    <name>
      <text>L55-Addition matrices 2x2</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[\(\mathbf{A}=\begin{bmatrix}{a11}&amp;{a12}\\{a21}&amp;{a22}\end{bmatrix}\)&nbsp;<br>\(\mathbf{B}=\begin{bmatrix}{b11}&amp;{b12}\\{b21}&amp;{b22}\end{bmatrix}\)<br><br>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Both matrices are 2 by 2.<br></p><p dir="ltr" style="text-align: left;">Add the corresponding elements of the matrices.</p><p dir="ltr" style="text-align: left;">\(\mathbf{A+B}=\begin{bmatrix}{{a11}+{b11}}&amp;{{a12}+{b12}}\\{{a21}+{b21}}&amp;{{a22}+{b22}}\end{bmatrix}\)<br></p><p dir="ltr" style="text-align: left;">\(\mathbf{A+B}=\begin{bmatrix}{y11}&amp;{y12}\\{y21}&amp;{y22}\end{bmatrix}\)<br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>a11={-9:9:1};
a12={-9:9:1};
a21={-9:9:1};
a22={-9:9:1};
b11={-9:9:1};
b12={-9:9:1};
b21={-9:9:1};
b22={-9:9:1};
</text>
</varsrandom>
<varsglobal><text>y11=a11+b11;
y12=a12+b12;
y21=a21+b21;
y22=a22+b22;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>4</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[y11,y12,y21,y22]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<table>
    <tbody>
        <tr>
          <td rowspan="2"><strong><span>A+B </span>=</strong></td>
          <td style="border-top: 1px solid black; border-left:1px solid black;"></td>
            <td>{_0}</td>
            <td>{_1}</td>
            <td style="border-top: 1px solid black; border-right:1px solid black;"></td>
        </tr>
        <tr>
            <td style="border-bottom: 1px solid black; border-left:1px solid black;"></td>
            <td>{_2}</td>
            <td>{_3}</td>
            <td style="border-bottom: 1px solid black; border-right:1px solid black;"></td>
        </tr>

    </tbody>
</table>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360727  -->
  <question type="formulas">
    <name>
      <text>L55-Addition matrices 2x3</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[\(\mathbf{A}=\begin{bmatrix}{a11}&amp;{a12}&amp;{a13}\\{a21}&amp;{a22}&amp;{a23}\end{bmatrix}\)&nbsp;<br>\(\mathbf{B}=\begin{bmatrix}{b11}&amp;{b12}&amp;{b13}\\{b21}&amp;{b22}&amp;{b23}\end{bmatrix}\)<br><br>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Both matrices are 2 by 2.<br></p><p dir="ltr" style="text-align: left;">Add the corresponding elements of the matrices.</p><p dir="ltr" style="text-align: left;">\(\mathbf{A+B}=\begin{bmatrix}{{a11}+{b11}}&amp;{{a12}+{b12}}&amp;{{a13}+{b13}}\\{{a21}+{b21}}&amp;{{a22}+{b22}}&amp;{{a23}+{b23}}\end{bmatrix}\)<br></p><p dir="ltr" style="text-align: left;">\(\mathbf{A+B}=\begin{bmatrix}{y11}&amp;{y12}&amp;{y13}\\{y21}&amp;{y22}&amp;{y23}\end{bmatrix}\)<br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>a11={-9:9:1};
a12={-9:9:1};
a13={-9:9:1};
a21={-9:9:1};
a22={-9:9:1};
a23={-9:9:1};
b11={-9:9:1};
b12={-9:9:1};
b13={-9:9:1};
b21={-9:9:1};
b22={-9:9:1};
b23={-9:9:1};
</text>
</varsrandom>
<varsglobal><text>y11=a11+b11;
y12=a12+b12;
y13=a13+b13;
y21=a21+b21;
y22=a22+b22;
y23=a23+b23;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>6</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[y11,y12,y13,y21,y22,y23]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<table>
    <tbody>
        <tr>
            <td rowspan="2"><strong><span>A+B </span>=</strong></td>
            <td style="border-top: 1px solid black; border-left:1px solid black;"></td>
            <td>{_0}</td>
            <td>{_1}</td>
          <td>{_2}</td>
            <td style="border-top: 1px solid black; border-right:1px solid black;"></td>
        </tr>
        <tr>
            <td style="border-bottom: 1px solid black; border-left:1px solid black;"></td>
            <td>{_3}</td>
            <td>{_4}</td>
          <td>{_5}</td>
            <td style="border-bottom: 1px solid black; border-right:1px solid black;"></td>
        </tr>

    </tbody>
</table>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 0  -->
  <question type="category">
    <category>
      <text>$course$/top/Default for MSII/Test #7/L55- Sets and Matrices/L55- Size of Matrices</text>
    </category>
    <info format="html">
      <text></text>
    </info>
    <idnumber></idnumber>
  </question>

<!-- question: 360732  -->
  <question type="formulas">
    <name>
      <text>L55-matrices 2x2</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[\(\mathbf{A}=\begin{bmatrix}{a11}&amp;{a12}\\{a21}&amp;{a22}\end{bmatrix}\)&nbsp;<br>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">It is a 2 by 2 matrix.<br></p><p dir="ltr" style="text-align: left;">The matrix size is the number of rows to the number of columns.</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>a11={-9:9:1};
a12={-9:9:1};
a21={-9:9:1};
a22={-9:9:1};

</text>
</varsrandom>
<varsglobal><text></text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>2</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[2,2]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">The matrix is a {_0} by {_1} matrix<br></p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360733  -->
  <question type="formulas">
    <name>
      <text>L55-matrices 2x3</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[\(\mathbf{A}=\begin{bmatrix}{a11}&amp;{a12}&amp;{a13}\\{a21}&amp;{a22}&amp;{a23}\end{bmatrix}\)&nbsp;<br>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">It is a 2 by 3 matrix.<br></p><p dir="ltr" style="text-align: left;">The matrix has 2 rows and 3 columns.</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>a11={-9:9:1};
a12={-9:9:1};
a13={-9:9:1};
a21={-9:9:1};
a22={-9:9:1};
a23={-9:9:1};

</text>
</varsrandom>
<varsglobal><text></text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>2</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[2,3]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">The matrix is a {_0} by {_1} matrix<br></p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360734  -->
  <question type="formulas">
    <name>
      <text>L55-matrices 3x3</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[\(\mathbf{A}=\begin{bmatrix}{a11}&amp;{a12}&amp;{a13}\\{a21}&amp;{a22}&amp;{a23}\\{a31}&amp;{a32}&amp;{a33}\end{bmatrix}\)&nbsp;<br>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">It is a 3 by 3 matrix.<br></p><p dir="ltr" style="text-align: left;">The matrix has 3 rows and 3 columns.</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>a11={-9:9:1};
a12={-9:9:1};
a13={-9:9:1};
a21={-9:9:1};
a22={-9:9:1};
a23={-9:9:1};
a31={-9:9:1};
a32={-9:9:1};
a33={-9:9:1};
</text>
</varsrandom>
<varsglobal><text></text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>2</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[3,3]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">The matrix is a {_0} by {_1} matrix<br></p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360735  -->
  <question type="formulas">
    <name>
      <text>L55-matrices 3x4</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[\(\mathbf{A}=\begin{bmatrix}{a11}&amp;{a12}&amp;{a13}&amp;{a14}\\{a21}&amp;{a22}&amp;{a23}&amp;{a24}\\{a31}&amp;{a32}&amp;{a33}&amp;{a34}\end{bmatrix}\)&nbsp;<br>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">It is a 3 by 4 matrix.<br></p><p dir="ltr" style="text-align: left;">The matrix has 3 rows and 4 columns.</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>a11={-9:9:1};
a12={-9:9:1};
a13={-9:9:1};
a14={-9:9:1};
a21={-9:9:1};
a22={-9:9:1};
a23={-9:9:1};
a24={-9:9:1};
a31={-9:9:1};
a32={-9:9:1};
a33={-9:9:1};
a34={-9:9:1};</text>
</varsrandom>
<varsglobal><text></text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>2</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>[3,4]</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text>_err == 0</text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text><![CDATA[<p dir="ltr" style="text-align: left;">The matrix is a {_0} by {_1} matrix<br></p>]]></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 0  -->
  <question type="category">
    <category>
      <text>$course$/top/Default for MSII/Test #7/L55- Sets and Matrices/L55- Sets</text>
    </category>
    <info format="html">
      <text></text>
    </info>
    <idnumber></idnumber>
  </question>

<!-- question: 360739  -->
  <question type="gapselect">
    <name>
      <text>L55 - set of even numbers</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Choose the numbers that are included in the set of even numbers from 1 to 10. (Enter the numbers from smallest to largest.)</p><p dir="ltr" style="text-align: left;">[[1]] [[8]], [[10]], [[12]], [[14]], [[16]] [[2]]</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">The set of even numbers from 2 to 10 is { 2, 4, 6, 8, 10 }</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <shuffleanswers>0</shuffleanswers>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
    <selectoption>
      <text>{</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>}</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>(</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>)</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>[</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>]</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>1</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>2</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>3</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>4</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>5</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>6</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>7</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>8</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>9</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>10</text>
      <group>2</group>
    </selectoption>
  </question>

<!-- question: 360740  -->
  <question type="gapselect">
    <name>
      <text>L55 - set of odd numbers</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Choose the numbers that are included in the set of odd numbers from 1 to 10. (Enter the numbers from smallest to largest.)</p><p dir="ltr" style="text-align: left;">[[1]] [[7]], [[9]], [[11]], [[13]], [[15]] [[2]]</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">The set of even numbers from 2 to 10 is { 1, 3, 5, 7, 9 }</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <shuffleanswers>0</shuffleanswers>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
    <selectoption>
      <text>{</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>}</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>(</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>)</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>[</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>]</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>1</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>2</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>3</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>4</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>5</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>6</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>7</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>8</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>9</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>10</text>
      <group>2</group>
    </selectoption>
  </question>

<!-- question: 360741  -->
  <question type="matching">
    <name>
      <text>L55- Match set with description</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Match the set with each description</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <shuffleanswers>true</shuffleanswers>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
    <subquestion format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">The set of integers</p>]]></text>
      <answer>
        <text>{..., -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6...}</text>
      </answer>
    </subquestion>
    <subquestion format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">The set of natural or counting numbers</p>]]></text>
      <answer>
        <text>{1, 2, 3, 4, 5, 6, ...}</text>
      </answer>
    </subquestion>
    <subquestion format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">The set of whole numbers</p>]]></text>
      <answer>
        <text>{0, 1, 2, 3, 4, 5,... }</text>
      </answer>
    </subquestion>
  </question>

<!-- question: 360738  -->
  <question type="multichoice">
    <name>
      <text>L55- Sets</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">The symbol placed around a set, or group of items in a collection, is:</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <single>true</single>
    <shuffleanswers>true</shuffleanswers>
    <answernumbering>none</answernumbering>
    <showstandardinstruction>1</showstandardinstruction>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
    <answer fraction="0" format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">( )</p>]]></text>
      <feedback format="html">
        <text><![CDATA[<p dir="ltr" style="text-align: left;">No, this is not correct</p>]]></text>
      </feedback>
    </answer>
    <answer fraction="100" format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">{&nbsp; }</p>]]></text>
      <feedback format="html">
        <text><![CDATA[<p dir="ltr" style="text-align: left;">Correct, Curly brackets are written around the data part of a set.</p>]]></text>
      </feedback>
    </answer>
    <answer fraction="0" format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">[&nbsp; ]</p>]]></text>
      <feedback format="html">
        <text><![CDATA[<p dir="ltr" style="text-align: left;">this is not the correct answer.</p>]]></text>
      </feedback>
    </answer>
    <answer fraction="0" format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">"&nbsp; "</p>]]></text>
      <feedback format="html">
        <text><![CDATA[<p dir="ltr" style="text-align: left;">This is not the correct answer.</p>]]></text>
      </feedback>
    </answer>
  </question>

<!-- question: 0  -->
  <question type="category">
    <category>
      <text>$course$/top/Default for MSII/Test #7/L56- Percent - Of/L56- Mentally percent of</text>
    </category>
    <info format="html">
      <text></text>
    </info>
    <idnumber></idnumber>
  </question>

<!-- question: 360748  -->
  <question type="formulas">
    <name>
      <text>Mentally Computer Percent-Of (1%)</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Computer Mentally:&nbsp; {percent}% of {number}</p><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">1% of {number} means \(\frac{1}{100}\) of the number.</p><p dir="ltr" style="text-align: left;">To divide a number by 100, move the decimal two places to the left.</p><p dir="ltr" style="text-align: left;"><span style="font-size: 0.9375rem;">{percent}% of {number} equals {ans}</span><br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>number={10:100:10};</text>
</varsrandom>
<varsglobal><text>percent=1;
ans=percent/100*number;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>ans</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text><![CDATA[_err < 0.01]]></text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360749  -->
  <question type="formulas">
    <name>
      <text>Mentally Computer Percent-Of (10%)</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Computer Mentally:&nbsp; {percent}% of {number}</p><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">{percent}% of {number} means \(\frac{10}{100}\), or&nbsp;\(\frac{1}{10}\), of the number.</p><p dir="ltr" style="text-align: left;">To divide a number by 10, move the decimal one places to the left.</p><p dir="ltr" style="text-align: left;"><span style="font-size: 0.9375rem;">{percent}% of {number} equals {ans}</span><br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>number={10:100:10};</text>
</varsrandom>
<varsglobal><text>percent=10;
ans=percent/100*number;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>ans</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text><![CDATA[_err < 0.01]]></text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360744  -->
  <question type="formulas">
    <name>
      <text>Mentally Computer Percent-Of (10,20,30,...90)</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Computer Mentally:&nbsp; {percent}% of {number}</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">10% of {number} is {=number/10}.</p><p dir="ltr" style="text-align: left;">{percent}% is {=percent/10} times 10%, therefore multiply&nbsp;{=number/10} by&nbsp;{=percent/10}.</p><p dir="ltr" style="text-align: left;">{percent}% of {number} equals {ans}<br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>percent={10,20,30,40,60,70,80,90};
number={10:100:10};</text>
</varsrandom>
<varsglobal><text>ans=percent/100*number;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>ans</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text><![CDATA[_err < 0.01]]></text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360745  -->
  <question type="formulas">
    <name>
      <text>Mentally Computer Percent-Of (25%)</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Computer Mentally:&nbsp; {percent}% of {number}</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">25% of {number} is one fourth of the number.</p><p dir="ltr" style="text-align: left;">{percent}% of {number} means&nbsp; (\(  \frac{1}{4}  \))( \(\frac{{number}}{1}\)) =&nbsp;\(\frac{{number}}{4}\)</p><p dir="ltr" style="text-align: left;">To calculate the answer, divide {number} ÷4 = {ans}</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>number={4:96:4};</text>
</varsrandom>
<varsglobal><text>percent=25;
ans=percent/100*number;
</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>ans</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text><![CDATA[_err < 0.01]]></text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360750  -->
  <question type="formulas">
    <name>
      <text>Mentally Computer Percent-Of (33 1/3%)</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Computer Mentally:&nbsp; 33\(\frac{1}{3}\)% of {number}</p><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">&nbsp;33\(\frac{1}{3}\)% of {number} means \(\frac{1}{3}\) of {number}.</p><p dir="ltr" style="text-align: left;">Since&nbsp;&nbsp;33\(\frac{1}{3}\)% equals \(\frac{1}{3}\), divide {number} by 3.</p><p dir="ltr" style="text-align: left;"><span style="font-size: 0.9375rem;">&nbsp;33\(\frac{1}{3}\)% of {number} equals {ans}</span><br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>number={3:99:3};</text>
</varsrandom>
<varsglobal><text>percent=100/3;
ans=percent/100*number;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>ans</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text><![CDATA[_err < 0.01]]></text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360746  -->
  <question type="formulas">
    <name>
      <text>Mentally Computer Percent-Of (50%)</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Computer Mentally:&nbsp; {percent}% of {number}</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">{percent}% of {number} is one {fraction} of the number.</p><p dir="ltr" style="text-align: left;">{percent}% of {number} means&nbsp; (\(  \frac{1}{{fracNum}}  \))( \(\frac{{number}}{1}\)) =&nbsp;\(\frac{{number}}{{fracNum}}\)</p><p dir="ltr" style="text-align: left;">To calculate the answer, divide {number} ÷ {fracNum} = {ans}</p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>number={2:100:2};</text>
</varsrandom>
<varsglobal><text><![CDATA[percent=50;
ans=percent/100*number;
fraction="half";
fracNum=2;
]]></text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>ans</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text><![CDATA[_err < 0.01]]></text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360747  -->
  <question type="formulas">
    <name>
      <text>Mentally Computer Percent-Of (75%)</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Computer Mentally:&nbsp; {percent}% of {number}</p>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">{percent}% of {number} is three fourths of the number.</p>
<p dir="ltr" style="text-align: left;">{percent}% of {number} means&nbsp; (\( \frac{3}{4} \))( \(\frac{{number}}{1}\))</p>
<table>
    <tbody>
        <tr>
            <td colspan="3" style="text-align: center;">
                <h5 style="text-align: left;"><span><strong><span class="" style="color: rgb(51, 102, 255);">There are two ways to solve the question</span></strong></span></h5>
            </td>
        </tr>
        <tr>
            <td>
                <p dir="ltr" style="text-align: left;">&nbsp;(\( \frac{3}{4} \))( \(\frac{{number}}{1}\)) = \(\frac{{number3}}{4}\)</p>
                <p dir="ltr" style="text-align: left;">To calculate the answer, divide {number3} ÷4 = {ans}</p>
            </td>
            <td>&nbsp; &nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">(\( \frac{3}{4} \))( \(\frac{{number}}{1}\))</p>
                <p dir="ltr" style="text-align: left;">To calculate the answer, (cross-cancel first) divide {number} ÷4, then multiply by 3.</p>
                <p>{number} ÷4 = {=number/4}</p>
                <p>{=number/4} x 3 = {ans}</p>
            </td>
        </tr>
    </tbody>
</table>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>number={4:96:4};</text>
</varsrandom>
<varsglobal><text>percent=75;
ans=percent/100*number;
number3=number*3;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>ans</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text><![CDATA[_err < 0.01]]></text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360751  -->
  <question type="formulas">
    <name>
      <text>Mentally Computer Percent-Of (greater than 100%)</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">Computer Mentally:&nbsp; {percent}% of {number}</p><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;">100% of {number} means 1 times {number}.</p><p dir="ltr" style="text-align: left;">Multiply {number} times {=percent/100} (because 100 times&nbsp;{=percent/100} = {percent}).</p><p dir="ltr" style="text-align: left;"><span style="font-size: 0.9375rem;">{percent}% of {number} equals {ans}</span><br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>percent={100:1000:100};
number={1:80:1};</text>
</varsrandom>
<varsglobal><text>ans=percent/100*number;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>ans</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text><![CDATA[_err < 0.01]]></text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 0  -->
  <question type="category">
    <category>
      <text>$course$/top/Default for MSII/Test #7/L56- Percent - Of/L56- Percent of find is</text>
    </category>
    <info format="html">
      <text></text>
    </info>
    <idnumber></idnumber>
  </question>

<!-- question: 360754  -->
  <question type="formulas">
    <name>
      <text>Computer Percent-Of (less 100 - equation)</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;"><strong>Computer using an algebraic equation:&nbsp;&nbsp;</strong><br>{percent}% of {number}</p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<span class="" style="color: rgb(255, 51, 102);">{percent}% = \(\frac{{percent}}{100}\)</span>
<table style="text-align: center;">
    <tbody>
        <tr>
            <td colspan="3"><strong>Solve Percent of Questions with an Equation</strong></td>

        </tr>
        <tr>
            <td colspan="3">Use {percent} for the percent.<br>&nbsp;Of means multiply.<br>Is means equals.</td>
        </tr>
        <tr>
            <td><span class="" style="color: rgb(51, 102, 255);">{percent}% of {number}</span><br>% of a number is ________<br>(_______%)(number) = ________</td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Write the equation</p>
            </td>
        </tr>
        <tr>
            <td>({percent}%)({number}) = _______</td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Substitute the Values</p>
            </td>
        </tr>
        <tr>
            <td>({=percent/100})({number}) = ______<br></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Change percent to a decimal or a fraction.&nbsp; <br>In this example I changed it to a decimal.</p>
            </td>
        </tr>

        <tr>
            <td><strong>{ans}</strong><br></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Simplify</p>
            </td>
        </tr>
        <tr>
            <td><br></td><td></td><td>
            </td>
        </tr>
        <tr>
            <td>{percent}% of {number} = <strong>{ans}</strong><br></td><td></td><td>
            </td>
        </tr>
    </tbody>
</table><br>
<p dir="ltr" style="text-align: left;"><br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>percent={1:99};
number={10:100:10};</text>
</varsrandom>
<varsglobal><text>ans=percent/100*number;
numPer=number*percent;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>ans</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text><![CDATA[_err < 0.01]]></text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360753  -->
  <question type="formulas">
    <name>
      <text>Computer Percent-Of (less 100 - proportion)</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;"><strong>Computer using a proportion:&nbsp;&nbsp;</strong><br>{percent}% of {number}</p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<span class="" style="color: rgb(255, 51, 102);">{percent}% = \(\frac{{percent}}{100}\)</span>
<table style="text-align: center;">
    <tbody>
        <tr>
            <td colspan="3"><strong>Solve Percent of Questions with a Proportion</strong></td>

        </tr>
      <tr><td colspan="3">Use {percent} for the percent.<br>Use {number} for of.<br>Solve for 'is'.  Leave it as is, or substitute with a variable.</td></tr>
        <tr>
            <td>\(\frac{%}{100}\) = \(\frac{is}{of}\)</td><td>&nbsp; &nbsp; &nbsp;&nbsp;</td><td>
  <p dir="ltr" style="text-align: left;">Write the proportion</p></td></tr><tr>
            <td>\(\frac{{percent}}{100}\) = \(\frac{is}{{number}}\)</td><td>&nbsp; &nbsp; &nbsp;&nbsp;</td><td>
  <p dir="ltr" style="text-align: left;">Substitute the Values</p></td></tr><tr>
            <td>(100)(is) = ({number})({percent})<br></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Cross Multiply</p>
            </td>
        </tr>
       
        <tr>
            <td>(100)(is) = ({numPer})<br></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Simplify</p>
            </td>
        </tr>
        <tr>
            <td>\(\frac{(100)(is)}{100}\) = \(\frac{({numPer})}{100}\)<br></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Divide both sides by 100</p>
            </td>
        </tr>
        <tr>
            <td><strong>is = {ans}</strong><br></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Simplify</p>
            </td>
        </tr>
    </tbody>
</table><br>
<p dir="ltr" style="text-align: left;"><br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>percent={1:99};
number={10:100:10};</text>
</varsrandom>
<varsglobal><text>ans=percent/100*number;
numPer=number*percent;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>ans</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text><![CDATA[_err < 0.01]]></text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 0  -->
  <question type="category">
    <category>
      <text>$course$/top/Default for MSII/Test #7/L56- Percent - Of/L56- Percent of - find of</text>
    </category>
    <info format="html">
      <text></text>
    </info>
    <idnumber></idnumber>
  </question>

<!-- question: 360755  -->
  <question type="formulas">
    <name>
      <text>Computer Percent-Of (find of - equation)</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;"><strong>Computer using an algebraic equation:&nbsp;&nbsp;</strong><br>{percent}% of a number is {ans}</p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<span class="" style="color: rgb(255, 51, 102);">{percent}% = \(\frac{{percent}}{100}\)</span>
<table style="text-align: center;">
    <tbody>
        <tr>
            <td colspan="3"><strong>Solve Percent of Questions with an Equation</strong></td>

        </tr>
        <tr>
            <td colspan="3">Use {percent} for the percent.<br>&nbsp;<span class="" style="color: rgb(51, 102, 255);">Of means multiply.</span><br><span class="" style="color: rgb(204, 51, 255);">Is means equals.</span></td>
        </tr>
        <tr>
            <td><span class="" style="color: rgb(51, 102, 255);"><span class="" style="color: rgb(184, 138, 0);">{percent}%</span> of <span class="" style="color: rgb(255, 51, 102);">a number</span> <span class="" style="color: rgb(204, 51, 255);">is</span> <span class="" style="color: rgb(255, 204, 51);">{ans}</span></span><br>% of _____ is ________<br>(_______%)(______) = ________</td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Write the equation</p>
            </td>
        </tr>
        <tr>
            <td><span class="" style="color: rgb(184, 138, 0);">({percent}%)</span>(<span class="" style="color: rgb(255, 51, 102);">x</span>) <span class="" style="color: rgb(204, 51, 255);">=</span> <span class="" style="color: rgb(255, 204, 51);">{ans}</span></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Substitute the Values.&nbsp;<br> I used <span class="" style="color: rgb(255, 51, 102);">x</span> to represent the unknown.</p>
            </td>
        </tr>
        <tr>
            <td>({decPer})(x) = {ans}<br></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Change percent to a decimal or a fraction.&nbsp; <br>In this example I changed it to a decimal.</p>
            </td>
        </tr>

        <tr>
            <td>\(\frac{({decPer})(x)}{{decPer}}\) = \(\frac{{ans}}{{decPer}}\)</td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Divide both sides by {decPer}</p>
            </td>
        </tr>
        <tr>
            <td>x = {number}</td>
            <td></td>
            <td>Simplify
            </td>
        </tr>
        <tr>
            <td>{percent}% of <strong>{number}</strong> =<span> <span style="">{ans}</span></span><br></td>
            <td></td>
            <td>
            </td>
        </tr>
    </tbody>
</table><br>
<p dir="ltr" style="text-align: left;"><br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>percent={1:99};
number={10:100:10};</text>
</varsrandom>
<varsglobal><text>ans=percent/100*number;
numPer=number*percent;
decPer=percent/100;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>number</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text><![CDATA[_err < 0.01]]></text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360756  -->
  <question type="formulas">
    <name>
      <text>Computer Percent-Of (find of - proportion)</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;"><strong>Computer using a proportion:&nbsp;&nbsp;</strong><br>{percent}% of a number is {ans}</p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<span class="" style="color: rgb(255, 51, 102);">{percent}% = \(\frac{{percent}}{100}\)</span>
<table style="text-align: center;">
    <tbody>
        <tr>
            <td colspan="3"><strong>Solve Percent of Questions with a Proportion</strong></td>

        </tr>
      <tr><td colspan="3">Use {percent} for the percent.<br>Use x for of. (of is the unknown)<br>Use {ans} for is.</td></tr>
        <tr>
            <td>\(\frac{%}{100}\) = \(\frac{is}{of}\)</td><td>&nbsp; &nbsp; &nbsp;&nbsp;</td><td>
  <p dir="ltr" style="text-align: left;">Write the proportion</p></td></tr><tr>
            <td>\(\frac{{percent}}{100}\) = \(\frac{{ans}}{x}\)</td><td>&nbsp; &nbsp; &nbsp;&nbsp;</td><td>
  <p dir="ltr" style="text-align: left;">Substitute the Values</p></td></tr><tr>
            <td>(100)({ans}) = (x)({percent})<br></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Cross Multiply</p>
            </td>
        </tr>
       
        <tr>
            <td>({=ans*100}) = {percent}x<br></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Simplify</p>
            </td>
        </tr>
        <tr>
            <td>\(\frac{{=ans*100}}{{percent}}\) = \(\frac{{percent}x}{{percent}}\)<br></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Divide both sides by {percent}</p>
            </td>
        </tr>
        <tr>
            <td><strong>{number} = x</strong><br></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Simplify</p>
            </td>
        </tr>
    </tbody>
</table><br>
<p dir="ltr" style="text-align: left;"><br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>percent={1:99};
number={10:100:10};</text>
</varsrandom>
<varsglobal><text>ans=percent/100*number;
numPer=number*percent;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>number</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text><![CDATA[_err < 0.01]]></text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 0  -->
  <question type="category">
    <category>
      <text>$course$/top/Default for MSII/Test #7/L56- Percent - Of/L56- Percent is of - find Percent</text>
    </category>
    <info format="html">
      <text></text>
    </info>
    <idnumber></idnumber>
  </question>

<!-- question: 360850  -->
  <question type="formulas">
    <name>
      <text>L56- Compute Percent-Of (find percent - equation)</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;"><strong>Compute using an algebraic equation:&nbsp;&nbsp;</strong><br>What percent of {number} is {ans}?</p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<table style="text-align: center;">
    <tbody>
        <tr>
            <td colspan="3"><strong>Solve Percent of Questions with an Equation</strong></td>

        </tr>
        <tr>
            <td colspan="3">&nbsp;<span class="" style="color: rgb(51, 102, 255);">Of means multiply.</span><br><span class="" style="color: rgb(204, 51, 255);">Is means equals.</span></td>
        </tr>
        <tr>
            <td><span class="" style="color: rgb(51, 102, 255);"><span class="" style="color: rgb(184, 138, 0);">____%</span> of <span class="" style="color: rgb(255, 51, 102);">{number}</span> <span class="" style="color: rgb(204, 51, 255);">is</span> <span class="" style="color: rgb(255, 204, 51);">{ans}</span></span><br>% of _____ is ________<br>(_______%)(______) = ________</td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Write the equation</p>
            </td>
        </tr>
        <tr>
            <td><span class="" style="color: rgb(184, 138, 0);">(x)</span>(<span class="" style="color: rgb(255, 51, 102);">{number}</span>) <span class="" style="color: rgb(204, 51, 255);">=</span> <span class="" style="color: rgb(255, 204, 51);">{ans}</span></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Substitute the Values.&nbsp;<br> I used <span class="" style="color: rgb(184, 138, 0);">x</span> to represent the unknown percent.</p>
            </td>
        </tr>
        <tr>
            <td><br></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;"><br></p>
            </td>
        </tr>

        <tr>
            <td>\(\frac{(x)({number})}{{number}}\) = \(\frac{{ans}}{{number}}\)</td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Divide both sides by {number}</p>
            </td>
        </tr>
        <tr>
            <td>x = {=percent/100}</td>
            <td></td>
            <td>Simplify
            </td>
        </tr>
        <tr>
            <td>{percent}% of <strong>{number}</strong> =<span> <span style="">{ans}</span></span><br></td>
            <td></td>
            <td>Change the decimal answer to a percent by multiplying by 100.</td>
        </tr>
    </tbody>
</table><br>
<p dir="ltr" style="text-align: left;"><br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>percent={1:99};
number={10:100:10};</text>
</varsrandom>
<varsglobal><text>ans=percent/100*number;
numPer=number*percent;
decPer=percent/100;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>percent</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text><![CDATA[_err < 0.01]]></text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360853  -->
  <question type="formulas">
    <name>
      <text>L56- Compute Percent-Of (find percent - equation)</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;"><strong>Compute using an algebraic equation:&nbsp;&nbsp;</strong><br>What percent of {number} is {ans}?</p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<table style="text-align: center;">
    <tbody>
        <tr>
            <td colspan="3"><strong>Solve Percent of Questions with an Equation</strong></td>

        </tr>
        <tr>
            <td colspan="3">&nbsp;<span class="" style="color: rgb(51, 102, 255);">Of means multiply.</span><br><span class="" style="color: rgb(204, 51, 255);">Is means equals.</span></td>
        </tr>
        <tr>
            <td><span class="" style="color: rgb(51, 102, 255);"><span class="" style="color: rgb(184, 138, 0);">____%</span> of <span class="" style="color: rgb(255, 51, 102);">{number}</span> <span class="" style="color: rgb(204, 51, 255);">is</span> <span class="" style="color: rgb(255, 204, 51);">{ans}</span></span><br>% of _____ is ________<br>(_______%)(______) = ________</td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Write the equation</p>
            </td>
        </tr>
        <tr>
            <td><span class="" style="color: rgb(184, 138, 0);">(x)</span>(<span class="" style="color: rgb(255, 51, 102);">{number}</span>) <span class="" style="color: rgb(204, 51, 255);">=</span> <span class="" style="color: rgb(255, 204, 51);">{ans}</span></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Substitute the Values.&nbsp;<br> I used <span class="" style="color: rgb(184, 138, 0);">x</span> to represent the unknown percent.</p>
            </td>
        </tr>
        <tr>
            <td><br></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;"><br></p>
            </td>
        </tr>

        <tr>
            <td>\(\frac{(x)({number})}{{number}}\) = \(\frac{{ans}}{{number}}\)</td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Divide both sides by {number}</p>
            </td>
        </tr>
        <tr>
            <td>x = {=percent/100}</td>
            <td></td>
            <td>Simplify
            </td>
        </tr>
        <tr>
            <td>{percent}% of <strong>{number}</strong> =<span> <span style="">{ans}</span></span><br></td>
            <td></td>
            <td>Change the decimal answer to a percent by multiplying by 100.</td>
        </tr>
    </tbody>
</table><br>
<p dir="ltr" style="text-align: left;"><br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>percent={1:99};
number={10:100:10};</text>
</varsrandom>
<varsglobal><text>ans=percent/100*number;
numPer=number*percent;
decPer=percent/100;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>percent</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text><![CDATA[_err < 0.01]]></text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360851  -->
  <question type="formulas">
    <name>
      <text>L56-Compute Percent-Of (find % - proportion)</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;"><strong>Compute using a proportion:&nbsp;&nbsp;</strong><br>What percent of {number} is {ans}?</p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<table style="text-align: center;">
    <tbody>
        <tr>
            <td colspan="3"><strong>Solve Percent of Questions with a Proportion</strong></td>

        </tr>
      <tr><td colspan="3"><br></td></tr>
        <tr>
            <td>\(\frac{%}{100}\) = \(\frac{is}{of}\)</td><td>&nbsp; &nbsp; &nbsp;&nbsp;</td><td>
  <p dir="ltr" style="text-align: left;">Write the proportion</p></td></tr><tr>
            <td>\(\frac{x}{100}\) = \(\frac{{ans}}{{number}}\)</td><td>&nbsp; &nbsp; &nbsp;&nbsp;</td><td>
  <p dir="ltr" style="text-align: left;">Substitute the Values</p></td></tr><tr>
            <td>{number}x = ({ans})(100)<br></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Cross Multiply</p>
            </td>
        </tr>
       
        <tr>
            <td>{number}x = {=ans*100}<br></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Simplify</p>
            </td>
        </tr>
        <tr>
            <td>\(\frac{{number}x}{{number}}\) = \(\frac{{=ans*100}}{{number}}\)<br></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Divide both sides by {number}</p>
            </td>
        </tr>
        <tr>
            <td><strong>{percent} = x</strong><br></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Simplify</p>
            </td>
        </tr>
    </tbody>
</table><br>
<p dir="ltr" style="text-align: left;"><br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>percent={1:99};
number={10:100:10};</text>
</varsrandom>
<varsglobal><text>ans=percent/100*number;
numPer=number*percent;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>percent</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text><![CDATA[_err < 0.01]]></text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

<!-- question: 360854  -->
  <question type="formulas">
    <name>
      <text>L56-Compute Percent-Of (find % - proportion)</text>
    </name>
    <questiontext format="html">
      <text><![CDATA[<p dir="ltr" style="text-align: left;"><strong>Compute using a proportion:&nbsp;&nbsp;</strong><br>What percent of {number} is {ans}?</p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
    /*
                                  actualWidth    width of the input
                                  checkWidth     width at which the box becomes wider
                                  defaultWidth   default width of the box
                                  c, ctx             see https://www.w3schools.com/tags/canvas_measuretext.asp
                                  size               size of the font w/ px, e.g. '14 px'
                                                       note that the size of the font can be defined in any units,
                                                      e.g. small, medium, xx-large, 150%, 1.25cm, 22px
                                                      since it is always transformed into px units
                                  sizeN              size of the font w/o px, e.g. '14'
                                  family            family of the font, eg. "Times New Roman", Times, serif
                                  txt                 text of the input, e.g. '123456'
                */
    var defaultWidth = 30;
    document.write('<canvas id="canvas_1" style="display: none;"></canvas>');

    function newWidth() {
        var txt = $(".formulas_number").val();
        var size = $(".formulas_number").css('font-size');
        var sizeN = Number(size.substring(0, size.length - 2));
        var family = $(".formulas_number").css('font-family');
        var c = document.getElementById("canvas_1");
        var ctx = c.getContext("2d");
        ctx.font = size + " " + family;
        var actualWidth = ctx.measureText(txt).width;
        var checkWidth = defaultWidth - sizeN;
        if (actualWidth >= checkWidth) {
            $(".formulas_number").width(actualWidth + sizeN);
        } else {
            $(".formulas_number").width(defaultWidth);
        }
    }
    $(document).ready(function() {
        $(".formulas_number").css("padding-left", "10px");
        newWidth();
        $(".formulas_number").keyup(function() {
            newWidth();
        });
    });
</script>]]></text>
    </questiontext>
    <generalfeedback format="html">
      <text><![CDATA[<table style="text-align: center;">
    <tbody>
        <tr>
            <td colspan="3"><strong>Solve Percent of Questions with a Proportion</strong></td>

        </tr>
      <tr><td colspan="3"><br></td></tr>
        <tr>
            <td>\(\frac{%}{100}\) = \(\frac{is}{of}\)</td><td>&nbsp; &nbsp; &nbsp;&nbsp;</td><td>
  <p dir="ltr" style="text-align: left;">Write the proportion</p></td></tr><tr>
            <td>\(\frac{x}{100}\) = \(\frac{{ans}}{{number}}\)</td><td>&nbsp; &nbsp; &nbsp;&nbsp;</td><td>
  <p dir="ltr" style="text-align: left;">Substitute the Values</p></td></tr><tr>
            <td>{number}x = ({ans})(100)<br></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Cross Multiply</p>
            </td>
        </tr>
       
        <tr>
            <td>{number}x = {=ans*100}<br></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Simplify</p>
            </td>
        </tr>
        <tr>
            <td>\(\frac{{number}x}{{number}}\) = \(\frac{{=ans*100}}{{number}}\)<br></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Divide both sides by {number}</p>
            </td>
        </tr>
        <tr>
            <td><strong>{percent} = x</strong><br></td>
            <td>&nbsp; &nbsp; &nbsp;&nbsp;</td>
            <td>
                <p dir="ltr" style="text-align: left;">Simplify</p>
            </td>
        </tr>
    </tbody>
</table><br>
<p dir="ltr" style="text-align: left;"><br></p>]]></text>
    </generalfeedback>
    <defaultgrade>1.0000000</defaultgrade>
    <penalty>0.3333333</penalty>
    <hidden>0</hidden>
    <idnumber></idnumber>
    <correctfeedback format="html">
      <text>Your answer is correct.</text>
    </correctfeedback>
    <partiallycorrectfeedback format="html">
      <text>Your answer is partially correct.</text>
    </partiallycorrectfeedback>
    <incorrectfeedback format="html">
      <text>Your answer is incorrect.</text>
    </incorrectfeedback>
    <shownumcorrect/>
<varsrandom><text>percent={1:99};
number={10:100:10};</text>
</varsrandom>
<varsglobal><text>ans=percent/100*number;
numPer=number*percent;</text>
</varsglobal>
<answernumbering><text>abc</text>
</answernumbering>
<answers>
 <partindex>
  <text>0</text>
 </partindex>
 <placeholder>
  <text></text>
 </placeholder>
 <answermark>
  <text>1</text>
 </answermark>
 <answertype>
  <text>0</text>
 </answertype>
 <numbox>
  <text>1</text>
 </numbox>
 <vars1>
  <text></text>
 </vars1>
 <answer>
  <text>percent</text>
 </answer>
 <vars2>
  <text></text>
 </vars2>
 <correctness>
  <text><![CDATA[_err < 0.01]]></text>
 </correctness>
 <unitpenalty>
  <text>1</text>
 </unitpenalty>
 <postunit>
  <text></text>
 </postunit>
 <ruleid>
  <text>1</text>
 </ruleid>
 <otherrule>
  <text></text>
 </otherrule>
 <subqtext format="html">
<text></text>
 </subqtext>
 <feedback format="html">
<text></text>
 </feedback>
 <correctfeedback format="html">
<text></text>
 </correctfeedback>
 <partiallycorrectfeedback format="html">
<text></text>
 </partiallycorrectfeedback>
 <incorrectfeedback format="html">
<text></text>
 </incorrectfeedback>
</answers>
  </question>

</quiz>