From: <Saved by Microsoft Internet Explorer 5>
Subject: Algebraic Expressions with Exponents (test yourself)
Date: Tue, 28 Dec 2004 19:07:14 -0500
MIME-Version: 1.0
Content-Type: multipart/related;
	type="text/html";
	boundary="----=_NextPart_000_000E_01C4ED10.70F52470"
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180

This is a multi-part message in MIME format.

------=_NextPart_000_000E_01C4ED10.70F52470
Content-Type: text/html;
	charset="utf-8"
Content-Transfer-Encoding: quoted-printable
Content-Location: http://prkw.com/miaexpo.html

=EF=BB=BF<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>Algebraic Expressions</TITLE>
<META http-equiv=3DContent-Type content=3D"text/html; charset=3Dutf-8">
<META content=3D"MSHTML 6.00.2900.2523" name=3DGENERATOR>
<META content=3D"Klaus Oetjen" name=3DAuthor>
<SCRIPT language=3DJavaScript>
<!--
// created 4.2. 1997; last update 1.3.2000; Autor: Bernhard Jacobs , =
pf00bj@rz.uni-sb.de



function gibfeedback (auswertung)
{
       =20
        var fensterbreite=3D300
        var fensterhoehe=3D400
         =20
        version=3D(navigator.appVersion.charAt(0))
        browser=3Dnavigator.appName
        if ((version<=3D3) || (browser !=3D"Netscape"))
         {
         =20
          =
myfenster=3Dwindow.open('','myname','toobar=3Dno,location=3Dno,directorie=
s=3Dno,status=3Dno,scrollbars=3Dyes,resizable=3Dyes,copyhistory=3Dno,widt=
h=3D'+fensterbreite+',height=3D'+fensterhoehe+'')
         }
         else
         {
            var bildschirmbreite=3Dscreen.availWidth+screen.availLeft
            var xposition=3D bildschirmbreite-fensterbreite-12
            var yposition=3D screen.availTop+20
            =
myfenster=3Dwindow.open('','myname','toobar=3Dno,location=3Dno,directorie=
s=3Dno,status=3Dno,scrollbars=3Dyes,resizable=3Dyes,copyhistory=3Dno,widt=
h=3D'+fensterbreite+',height=3D'+fensterhoehe+',screenX=3D'+xposition+',s=
creenY=3D'+yposition+'')
         }    =20
       =20
        ndoc=3D myfenster.document
        ndoc.close()
        ndoc.open()
        //-------ge=C3=A4ndert am 11.10.1999 auf Vorschlag von Th. =
Hippchen, um das Fensterschlie=C3=9Fen in Netscape zuverl=C3=A4ssig zu =
erzwingen.---------
        astr =3D'<HTML><HEAD><BR><TITLE>' + =
'feedback'+'</TITLE></HEAD><BODY>';
        astr +=3Dauswertung +'<HR>'
        astr+=3D'<FORM Name=3D"myform"><input type=3Dbutton =
name=3Dschliessen value=3D"close window!" onclick=3D =
"self.close()"></form>'
        astr +=3D'</body></html>'
        =
//-----------------------------------------------------------------
        ndoc.write (astr)
        myfenster.focus()
}=20

//---------- 21.1. 1999;Leerzeichen zu Beginn und am Ende aus =
ShortAnswer-Aufgaben eliminieren ;Autor: Bernhard Jacobs , =
pf00bj@rz.uni-sb.de
// whitespace characters

var whitespace =3D " \t\n\r";
function charInString (c, s)

{  =20
 for (i =3D 0; i < s.length; i++)
    {   if (s.charAt(i) =3D=3D c) return true;
    }
    return false
}
function stripWhitespace (s)
=20
{   var i =3D 0;
  =20
    while ((i < s.length) && charInString (s.charAt(i), whitespace))
       i++;
    s=3Ds.substring (i, s.length)
    i=3Ds.length-1=20
   =20
    while (charInString (s.charAt(i), whitespace))
     {
       s=3Ds.substring(0,i)=20
       i--
     }
     return s;
}

function istin (muster,antwort)
{=20
 antwort=3Dantwort.toUpperCase()
 muster=3Dmuster.toUpperCase()=20
 ergebnis=3D antwort.indexOf(muster)
 if (ergebnis<0)=20
    {return(false)}
   else
    {return (true)}
}=20

function istgleich (antwort,muster)
 { return (antwort =3D=3D muster)
}


//------------------------------------Short Answer =
Aufgabe------------------------------------------------------------------=
---
function shortcheck (form)
{
 muster1=3D form.muster1.value=20
 muster2=3D form.muster2.value
 muster3=3D form.muster3.value
=20
 form.antwort.value=3D stripWhitespace (form.antwort.value)=20
 antwort=3D form.antwort.value
 feedback=3Dform.feedback.value
 vergleich=3Dform.vergleich.value
 auswertung=3D""
 if (vergleich =3D=3D "=3D")
   {=20
     if ( (istgleich (antwort,muster1) || istgleich (antwort,muster2) || =
istgleich(antwort,muster3)) &&antwort !=3D"" )
       {auswertung+=3D"<B>exact</B>"}
     else
      {auswertung+=3D"wrong"}
   }
    else=20
   {
    //antwort darf nicht nix sein; Muster kann nichts sein
    if (((istin (muster1,antwort )&& muster1 !=3D"") || (istin =
(muster2,antwort) && muster2 !=3D"") || ( istin(muster3,antwort) && =
muster3 !=3D"" )) &&antwort !=3D""  )
     {auswertung+=3D"<B>correct</B>"}
     else
      {auswertung+=3D"wrong"}
   }
  auswertung+=3D"<HR>" +feedback
  gibfeedback(auswertung)
  form.bearbeitet.value=3D"true"
 }

function lshortcheck(form)
{
  if (form.bearbeitet.value=3D=3D"true" )
  {form.antwort.value =3D form.muster1.value}
  else
  {alert('First try to answer the question on your own!') }
}
//------------------------------ENDE------Short Answer-Aufgabe-------- =
ENDE------------------------------------------------


//------------------------------------Short Answer (Zahl) =
Aufgabe-----------------------------------------------------------

//--------------- angef=C3=BCgt am 1.3.2000; Bernhard Jacobs, =
pf00bj@rz.uni-sb.de
//wandle automatisch Komma in Dezimalpunkt um
function changekomma(s)
{=20
   var i=3D0;
   var news=3D""
   for (i=3D0;i<=3Ds.length;i++)
   {
      if (s.substr (i,1)=3D=3D",")
      {news=3Dnews+"."}
    =20
      else
      {news=3Dnews+s.substr (i,1)}
     =20
   }
      return (news)
}

function mathshortcheck (form)
{
 muster=3D form.muster.value=20
 ergebnisart=3D form.ergebnisart.value
 toleranz =3D form.toleranz.value
=20
 form.antwort.value=3D stripWhitespace (form.antwort.value)=20
 form.antwort.value=3D changekomma(form.antwort.value)
 antwort=3Dform.antwort.value
 feedback=3Dform.feedback.value
 auswertung=3D""
 =20
 if (ergebnisart !=3D "Zahl")
     { antwort=3Deval(antwort) }
 if  (!isNaN (antwort) && !antwort=3D=3D"")
   {=20
     betrag =3D Math.abs (muster-antwort)
 =20
   if (betrag <=3Dtoleranz)
     {auswertung+=3D"<B>correct</B>"}
    else
     {auswertung+=3D"wrong"}
   }
   else
   {auswertung+=3D"wrong"}=20
 =20
 =20
  auswertung+=3D"<HR>" +feedback
  gibfeedback(auswertung)
  form.bearbeitet.value=3D"true"
 }

function mathlshortcheck(form)
{
  if (form.bearbeitet.value=3D=3D"true" )
  {form.antwort.value =3D form.muster.value}
  else
  {alert('First try to answer the question on your own!') }
}
//------------------------------ENDE------Short Answer-(Zahl) Aufgabe =
---- ENDE------------------------------------------------
//------------------------------------Simple =
MC-Aufgabe---------------------------------------------------------------=
-------------
function mccheck (form)
{=20
  auswertung=3D""
  n =3D form.mc.length
  for (i=3D0;i<n;i++)
  {=20
    itemnummer=3D i+1
=20
    if (form.mc[i].value =3D=3D1)
       {
         korrekt=3Ditemnummer
         if (form.mc[i].checked=3D=3Dtrue)
          {  auswertung+=3D"<B>correct</B><BR><HR>"}
         else
          { auswertung+=3D "<B>wrong answer</B> <BR>alternative =
"+korrekt+ " is correct  <HR>"}=20
        }
    }
    auswertung+=3Dform.feedback.value
    gibfeedback (auswertung)
    form.bearbeitet.value=3D"true"
}

function lmccheck(form)
{
if (form.bearbeitet.value=3D=3D"true" )
  {
    n =3D form.mc.length
    for (i=3D0;i<n;i++)
    //{ form.mc[i].checked=3Dfalse}
    //for (i=3D0;i<n;i++)
    {=20
       if (form.mc[i].value =3D=3D1)
       { form.mc[i].checked=3Dtrue
         break}
    }
  }
  else
  {alert('First try to answer the question on your own!') }
}
//------------------------------ENDE------Simple MC-------- =
ENDE------------------------------------------------
//------------------------------------Essay-Test-Aufgabe-----------------=
--------------------------------------------------------
function essay(form)
{
  auswertung=3D"<b>compare with your answer!<HR></b>"
  auswertung+=3Dform.feedback.value
  hinweis=3D"<HR>"
  hinweis+=3D'<b><a href=3D"javascript:alert(\'It has turned out to be =
quite sensible in the case of a wrong answer to correct the given answer =
on one=C2=B4s own and to formulate the correct answer.\')">Tip =
!</a></b>'
  auswertung+=3Dhinweis
  gibfeedback(auswertung)
  form.bearbeitet.value=3D"true"
}

function lessay(form)
{
  if (form.bearbeitet.value=3D=3D"true" )
   {auswertung=3D"<b>compare with your answer!<HR></b>"
    auswertung+=3Dform.feedback.value
    hinweis=3D"<HR>"
    hinweis+=3D'<b><a href=3D"javascript:alert(\'It has turned out to be =
quite sensible in the case of a wrong answer to correct the given answer =
on one=C2=B4s own and to formulate the correct answer.\')">Tip =
!</a></b>'
    auswertung+=3Dhinweis    =20
    gibfeedback(auswertung)
    }
    else
    {alert('First try to answer the question on your own!') }
}

// Vorzeitiges Feedback ohne Beantwortung kann nicht gaenzlich =
ausgeschlossen werden/-->
</SCRIPT>
<!-- ---------------------------------------------------------ENDE VON =
JAVASCRIPT---------------------------------------------------------------=
-------/!--></HEAD>
<BODY>
<HR align=3Dleft width=3D"100%">

<CENTER>
<H3><B>Algebraic Expressions with <FONT=20
color=3D#ff0000><B><BIG>Exponents</BIG></B></FONT></B></H3></CENTER>
<BLOCKQUOTE>Find the value of each of the following algebraic =
expressions,=20
  write it in the answer field, click on <I>confirm answer</I> and you =
will be=20
  told whether you are right or wrong. Hitting the <I><B>solution =
button</I></B>=20
  will insert the correct figure. <BR><B>c =3D 4</B>, &nbsp; <B>d =3D =
<BIG>-</BIG>=20
  6</B>, &nbsp; <B>x =3D <BIG>-</BIG> 3</B>:</BLOCKQUOTE>
<P>
<TABLE cellPadding=3D3 width=3D"80%" align=3Dcenter>
  <TBODY>
  <TR>
    <TD>
      <FORM method=3Dpost>1.)&nbsp;&nbsp;<B>d<SUP>2</SUP> =
=3D&nbsp;</B></TD>
    <TD></B><INPUT size=3D5 name=3Dantwort><INPUT type=3Dhidden =
value=3D36=20
      name=3Dmuster><INPUT type=3Dhidden value=3D" Zahl " =
name=3Dergebnisart><INPUT=20
      type=3Dhidden value=3D0.001 name=3Dtoleranz><INPUT type=3Dhidden=20
      value=3D"36 =3D (-6)=C2=B7(-6) =3D +36 " name=3Dfeedback><!-- =
------------------------------------------------------/--><INPUT=20
      type=3Dhidden value=3Dfalse name=3Dbearbeitet><INPUT =
onclick=3D"mathshortcheck (this.form)" type=3Dbutton value=3D"confirm =
answer" name=3DAufgabe><INPUT onclick=3Dmathlshortcheck(this.form) =
type=3Dbutton value=3D"solution ?" =
name=3DL=C3=B6sung></TD></FORM></TD></TR>
  <TR>
    <TD>
      <FORM method=3Dpost>2.)&nbsp;&nbsp;<B>-2x<SUP>2</SUP> =
=3D&nbsp;</B></TD>
    <TD></B><INPUT size=3D5 name=3Dantwort><INPUT type=3Dhidden =
value=3D-18=20
      name=3Dmuster><INPUT type=3Dhidden value=3D" Zahl " =
name=3Dergebnisart><INPUT=20
      type=3Dhidden value=3D0.001 name=3Dtoleranz><INPUT type=3Dhidden=20
      value=3D"(-2) =C2=B7 (-3)<sup>2</sup> =3D (-2) =C2=B7 9 =3D -18 =
<br> " name=3Dfeedback><!-- =
------------------------------------------------------/--><INPUT=20
      type=3Dhidden value=3Dfalse name=3Dbearbeitet><INPUT =
onclick=3D"mathshortcheck (this.form)" type=3Dbutton value=3D"confirm =
answer" name=3DAufgabe><INPUT onclick=3Dmathlshortcheck(this.form) =
type=3Dbutton value=3D"solution ?" name=3DL=C3=B6sung></TD></FORM></TR>
  <TR>
    <TD>
      <FORM method=3Dpost>3.)&nbsp;&nbsp;<B>c<SUP>2</SUP>d =
=3D&nbsp;</B></TD>
    <TD></B><INPUT size=3D5 name=3Dantwort><INPUT type=3Dhidden =
value=3D-96=20
      name=3Dmuster><INPUT type=3Dhidden value=3D" Zahl " =
name=3Dergebnisart><INPUT=20
      type=3Dhidden value=3D0.001 name=3Dtoleranz><INPUT type=3Dhidden=20
      value=3D"16 =C2=B7 (-6) =3D -96 " name=3Dfeedback><!-- =
------------------------------------------------------/--><INPUT=20
      type=3Dhidden value=3Dfalse name=3Dbearbeitet><INPUT =
onclick=3D"mathshortcheck (this.form)" type=3Dbutton value=3D"confirm =
answer" name=3DAufgabe><INPUT onclick=3Dmathlshortcheck(this.form) =
type=3Dbutton value=3D"solution ?" name=3DL=C3=B6sung></TD></FORM></TR>
  <TR>
    <TD>
      <FORM method=3Dpost>4.)&nbsp;&nbsp;<B>x<SUP>3</SUP> =
=3D&nbsp;</B></TD>
    <TD></B><INPUT size=3D5 name=3Dantwort><INPUT type=3Dhidden =
value=3D-27=20
      name=3Dmuster><INPUT type=3Dhidden value=3D" Zahl " =
name=3Dergebnisart><INPUT=20
      type=3Dhidden value=3D0.001 name=3Dtoleranz><INPUT type=3Dhidden=20
      value=3D"-3<sup>3</sup> =3D (-3)=C2=B7(-3) =C2=B7 (-3) =3D 9 =
=C2=B7 (-3) =3D -27 <br> "=20
      name=3Dfeedback><!-- =
------------------------------------------------------/--><INPUT=20
      type=3Dhidden value=3Dfalse name=3Dbearbeitet><INPUT =
onclick=3D"mathshortcheck (this.form)" type=3Dbutton value=3D"confirm =
answer" name=3DAufgabe><INPUT onclick=3Dmathlshortcheck(this.form) =
type=3Dbutton value=3D"solution ?" name=3DL=C3=B6sung></TD></FORM></TR>
  <TR>
    <TD>
      <FORM method=3Dpost>5.)&nbsp;&nbsp;<B>d<SUP>3</SUP> =C2=B7=20
      x<SUP>3</SUP>=3D&nbsp;</B></TD>
    <TD></B><INPUT size=3D5 name=3Dantwort><INPUT type=3Dhidden =
value=3D5832=20
      name=3Dmuster><INPUT type=3Dhidden value=3D" Zahl " =
name=3Dergebnisart><INPUT=20
      type=3Dhidden value=3D0.001 name=3Dtoleranz><INPUT type=3Dhidden=20
      value=3D"(-6)<sup>3</sup> =C2=B7 (-3)<sup>3</sup><br>=3D =
(-6)=C2=B7(-6)=C2=B7(-6) =C2=B7 (-3)=C2=B7(-3)=C2=B7(-3) <br>=3D (36 =
=C2=B7 -6) =C2=B7 (9 =C2=B7 -3) <br> =3D (-216) =C2=B7 (-27) <br> =3D =
5832"=20
      name=3Dfeedback><!-- =
------------------------------------------------------/--><INPUT=20
      type=3Dhidden value=3Dfalse name=3Dbearbeitet><INPUT =
onclick=3D"mathshortcheck (this.form)" type=3Dbutton value=3D"confirm =
answer" name=3DAufgabe><INPUT onclick=3Dmathlshortcheck(this.form) =
type=3Dbutton value=3D"solution ?" name=3DL=C3=B6sung></TD></FORM></TR>
  <TR>
    <TD>
      <FORM method=3Dpost>6.)&nbsp;&nbsp;<B>2c<SUP>2</SUP> - =
3d<SUP>2</SUP>=20
      =3D&nbsp;</B></TD>
    <TD></B><INPUT size=3D5 name=3Dantwort><INPUT type=3Dhidden =
value=3D-76=20
      name=3Dmuster><INPUT type=3Dhidden value=3D" Zahl " =
name=3Dergebnisart><INPUT=20
      type=3Dhidden value=3D0.001 name=3Dtoleranz><INPUT type=3Dhidden=20
      value=3D"(2=C2=B716) - (3=C2=B736) <br> =3D 32 - 108 <br> =3D -76" =
name=3Dfeedback><!-- =
------------------------------------------------------/--><INPUT=20
      type=3Dhidden value=3Dfalse name=3Dbearbeitet><INPUT =
onclick=3D"mathshortcheck (this.form)" type=3Dbutton value=3D"confirm =
answer" name=3DAufgabe><INPUT onclick=3Dmathlshortcheck(this.form) =
type=3Dbutton value=3D"solution ?" name=3DL=C3=B6sung></TD></FORM></TR>
  <TR>
    <TD>
      <FORM method=3Dpost>7.)&nbsp;&nbsp;<B>dx<SUP>2</SUP> =
=3D&nbsp;</B></TD>
    <TD></B><INPUT size=3D5 name=3Dantwort><INPUT type=3Dhidden =
value=3D-108=20
      name=3Dmuster><INPUT type=3Dhidden value=3D" Zahl " =
name=3Dergebnisart><INPUT=20
      type=3Dhidden value=3D0.001 name=3Dtoleranz><INPUT type=3Dhidden=20
      value=3D"36 =C2=B7 (-3) =3D -108" name=3Dfeedback><!-- =
------------------------------------------------------/--><INPUT=20
      type=3Dhidden value=3Dfalse name=3Dbearbeitet><INPUT =
onclick=3D"mathshortcheck (this.form)" type=3Dbutton value=3D"confirm =
answer" name=3DAufgabe><INPUT onclick=3Dmathlshortcheck(this.form) =
type=3Dbutton value=3D"solution ?" name=3DL=C3=B6sung></TD></FORM></TR>
  <TR>
    <TD>
      <FORM method=3Dpost>8.)&nbsp;&nbsp;<B>d<SUP>2</SUP> - 3d - 4 =
=3D&nbsp;</B></TD>
    <TD></B><INPUT size=3D5 name=3Dantwort><INPUT type=3Dhidden =
value=3D" 50 "=20
      name=3Dmuster><INPUT type=3Dhidden value=3D" Zahl " =
name=3Dergebnisart><INPUT=20
      type=3Dhidden value=3D0.001 name=3Dtoleranz><INPUT type=3Dhidden=20
      value=3D"(-6)=C2=B7(-6) - (3=C2=B7-6) - 4 <br> =3D 36 - (-18) - 4 =
<br> =3D 36 + 18 - 4 <br> =3D 50 "=20
      name=3Dfeedback><!-- =
------------------------------------------------------/--><INPUT=20
      type=3Dhidden value=3Dfalse name=3Dbearbeitet><INPUT =
onclick=3D"mathshortcheck (this.form)" type=3Dbutton value=3D"confirm =
answer" name=3DAufgabe><INPUT onclick=3Dmathlshortcheck(this.form) =
type=3Dbutton value=3D"solution ?" name=3DL=C3=B6sung></TD></FORM></TR>
  <TR>
    <TD>
      <FORM method=3Dpost>9.)&nbsp;&nbsp;<B>d<SUP>2</SUP> - 2dx + =
x<SUP>2</SUP>=20
      =3D&nbsp;</B></TD>
    <TD></B><INPUT size=3D5 name=3Dantwort><INPUT type=3Dhidden =
value=3D8=20
      name=3Dmuster><INPUT type=3Dhidden value=3D" Zahl " =
name=3Dergebnisart><INPUT=20
      type=3Dhidden value=3D0.001 name=3Dtoleranz><INPUT type=3Dhidden=20
      value=3D"36 - [2 =C2=B7(-6)=C2=B7(-3)] + 9 <br> =3D 36 - 36 + 9 =
=3D 9 " name=3Dfeedback><!-- =
------------------------------------------------------/--><INPUT=20
      type=3Dhidden value=3Dfalse name=3Dbearbeitet><INPUT =
onclick=3D"mathshortcheck (this.form)" type=3Dbutton value=3D"confirm =
answer" name=3DAufgabe><INPUT onclick=3Dmathlshortcheck(this.form) =
type=3Dbutton value=3D"solution ?" name=3DL=C3=B6sung></TD></FORM></TR>
  <TR>
    <TD>
      <FORM method=3Dpost>10.)&nbsp;&nbsp;<B>(c + x)<SUP>2</SUP> =
=3D&nbsp;</B></TD>
    <TD></B><INPUT size=3D5 name=3Dantwort><INPUT type=3Dhidden =
value=3D1=20
      name=3Dmuster><INPUT type=3Dhidden value=3D" Zahl " =
name=3Dergebnisart><INPUT=20
      type=3Dhidden value=3D0.001 name=3Dtoleranz><INPUT type=3Dhidden=20
      value=3D"[4 + (-3)]<sup>2</sup> =3D (4 - 3)<sup>2</sup> =3D 1  =
<br> "=20
      name=3Dfeedback><!-- =
------------------------------------------------------/--><INPUT=20
      type=3Dhidden value=3Dfalse name=3Dbearbeitet><INPUT =
onclick=3D"mathshortcheck (this.form)" type=3Dbutton value=3D"confirm =
answer" name=3DAufgabe><INPUT onclick=3Dmathlshortcheck(this.form) =
type=3Dbutton value=3D"solution ?" name=3DL=C3=B6sung></TD></FORM></TR>
  <TR>
    <TD>
      <FORM method=3Dpost>11.)&nbsp;&nbsp;<B>-5(3d - 4x)<SUP>2</SUP>=20
=3D&nbsp;</B></TD>
    <TD></B><INPUT size=3D5 name=3Dantwort><INPUT type=3Dhidden =
value=3D-180=20
      name=3Dmuster><INPUT type=3Dhidden value=3D" Zahl " =
name=3Dergebnisart><INPUT=20
      type=3Dhidden value=3D0.001 name=3Dtoleranz><INPUT type=3Dhidden=20
      value=3D"-5[(3=C2=B7-6) - (4=C2=B7-3)]<sup>2</sup> <br> =3D =
-5[(-18) - (-12)]<sup>2</sup> <br> =3D -5(-18 + 12)<sup>2</sup> <br> =3D =
-5(-6)<sup>2</sup> =3D (-5) =C2=B7 36 =3D -180 "=20
      name=3Dfeedback><!-- =
------------------------------------------------------/--><INPUT=20
      type=3Dhidden value=3Dfalse name=3Dbearbeitet><INPUT =
onclick=3D"mathshortcheck (this.form)" type=3Dbutton value=3D"confirm =
answer" name=3DAufgabe><INPUT onclick=3Dmathlshortcheck(this.form) =
type=3Dbutton value=3D"solution ?" name=3DL=C3=B6sung></TD></FORM></TR>
  <TR>
    <TD>
      <FORM method=3Dpost>12.)&nbsp;&nbsp;<B>c<SUP>2</SUP>/4 - =
d<SUP>2</SUP>/12=20
      =3D&nbsp;</B></TD>
    <TD></B><INPUT size=3D5 name=3Dantwort><INPUT type=3Dhidden =
value=3D" 1 "=20
      name=3Dmuster><INPUT type=3Dhidden value=3D" Zahl " =
name=3Dergebnisart><INPUT=20
      type=3Dhidden value=3D0.001 name=3Dtoleranz><INPUT type=3Dhidden=20
      value=3D"16/4 - 36/12 =3D 4 - 3 =3D 1 " name=3Dfeedback><!-- =
------------------------------------------------------/--><INPUT=20
      type=3Dhidden value=3Dfalse name=3Dbearbeitet><INPUT =
onclick=3D"mathshortcheck (this.form)" type=3Dbutton value=3D"confirm =
answer" name=3DAufgabe><INPUT onclick=3Dmathlshortcheck(this.form) =
type=3Dbutton value=3D"solution ?" name=3DL=C3=B6sung>
    <TD></FORM></TD></TR></TBODY></TABLE>
<HR align=3Dcenter width=3D"95%" color=3D#ff0033 SIZE=3D4>
</CENTER></BODY></HTML>

------=_NextPart_000_000E_01C4ED10.70F52470
Content-Type: image/jpeg
Content-Transfer-Encoding: base64
Content-Location: http://www.sec.org.za/about/bricksWM.jpg

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
t0IVZT9FnuGGtbGqXHNyuBB6hCFZ4X1//9k=

------=_NextPart_000_000E_01C4ED10.70F52470--

