lehrkraefte:blc:miniaufgaben

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
lehrkraefte:blc:miniaufgaben [2020/08/09 14:43]
Ivo Blöchliger
lehrkraefte:blc:miniaufgaben [2020/08/09 14:49]
Ivo Blöchliger
Line 15: Line 15:
  
 <JS> <JS>
-function generate(idex, idsol, ex, sep="<br>", sep2="<br>", numex=3) {+function miniAufgabe(idex, idsol, ex, sep="<br>", sep2="<br>", numex=3) { 
 +  var generate=function(idex, idsol, ex, sep="<br>", sep2="<br>", numex=3) {
     var randperm=function(n) {     var randperm=function(n) {
  var a = [];  var a = [];
Line 28: Line 29:
  }  }
  return a  return a
-    }+    };
     var selec=randperm(ex.length);     var selec=randperm(ex.length);
     if (numex<1){     if (numex<1){
Line 43: Line 44:
     MathJax.Hub.Queue(["Typeset",MathJax.Hub,idex]);     MathJax.Hub.Queue(["Typeset",MathJax.Hub,idex]);
     MathJax.Hub.Queue(["Typeset",MathJax.Hub,idsol]);     MathJax.Hub.Queue(["Typeset",MathJax.Hub,idsol]);
-+  }; 
-function wennGeladen(callback) { +  var wennGeladen = function(callback) { 
-  console.log("wennGeladen"); +    console.log("wennGeladen"); 
-  if ( document.readyState === "complete" || +    if ( document.readyState === "complete" || 
-    (document.readyState !== "loading" && !document.documentElement.doScroll)) { +      (document.readyState !== "loading" && !document.documentElement.doScroll)) { 
-    console.log("Call now"); +      console.log("Call now"); 
-    callback(); +      callback(); 
-  } else { +    } else { 
-     console.log("Schedule"); +       console.log("Schedule"); 
-     document.addEventListener("DOMContentLoaded", callback); +       document.addEventListener("DOMContentLoaded", callback); 
-  }+    } 
 +  }
 +  wennGeladen(function() { generate(idex, idsol, ex, sep, sep2, numex); });
 } }
 </JS> </JS>
Line 62: Line 65:
 Gegeben ist eine aufsteigend sortierte Wertereihe $x_1$, $x_2$, $\ldots$, $x_n$. Berechnen Sie das erste und dritte Quartil folgender Wertereihe: Gegeben ist eine aufsteigend sortierte Wertereihe $x_1$, $x_2$, $\ldots$, $x_n$. Berechnen Sie das erste und dritte Quartil folgender Wertereihe:
 <JS> <JS>
-wennGeladen(function() {generate("#exoQuartile","#solQuartile",+miniAufgabe("#exoQuartile","#solQuartile",
 [["Anzahl Werte $n=44$.<br>$\\begin{array}{lccccclcccccl}\n\\ldots & x_{9} & x_{10} & x_{11} & x_{12} & x_{13} & \\ldots  & x_{31} & x_{32} & x_{33} & x_{34} & x_{35}\\\\\n \\ldots & 60 & 61 & 67 & 70 & 71 & \\ldots & 114, & 119, & 121, & 126, & 135,\\\\\n \\end{array}$$\\ldots$", "Position für erstes Quartil: $1+0.25\\cdot 43 = 11.75$. Wir suchen also einen Wert an der Stelle 0.75 zwischen $x_{11}=67$ und $x_{12}=70$. Das erste Quartil ist damit $67 + 0.75 \\cdot (70-67) = 69.25$<br>Position für drittes Quartil: $i=1+0.75\\cdot 43 = 33.25$. Wir suchen also einen Wert an der Stelle 0.25 zwischen $x_{33}=121$ und $x_{34}=126$. Das dritte Quartil ist damit $121 + 0.25 \\cdot (126-121) = 122.25$<br>"], ["Anzahl Werte $n=66$.<br>$\\begin{array}{lccccclcccccl}\n\\ldots & x_{16} & x_{17} & x_{18} & x_{19} & x_{20} & \\ldots  & x_{47} & x_{48} & x_{49} & x_{50} & x_{51}\\\\\n \\ldots & 68 & 72 & 77 & 79 & 79 & \\ldots & 127, & 128, & 129, & 130, & 131,\\\\\n \\end{array}$$\\ldots$", "Position für erstes Quartil: $1+0.25\\cdot 65 = 17.25$. Wir suchen also einen Wert an der Stelle 0.25 zwischen $x_{17}=72$ und $x_{18}=77$. Das erste Quartil ist damit $72 + 0.25 \\cdot (77-72) = 73.25$<br>Position für drittes Quartil: $i=1+0.75\\cdot 65 = 49.75$. Wir suchen also einen Wert an der Stelle 0.75 zwischen $x_{49}=129$ und $x_{50}=130$. Das dritte Quartil ist damit $129 + 0.75 \\cdot (130-129) = 129.75$<br>"], ["Anzahl Werte $n=66$.<br>$\\begin{array}{lccccclcccccl}\n\\ldots & x_{14} & x_{15} & x_{16} & x_{17} & x_{18} & \\ldots  & x_{47} & x_{48} & x_{49} & x_{50} & x_{51}\\\\\n \\ldots & 62 & 63 & 64 & 68 & 70 & \\ldots & 131, & 134, & 134, & 135, & 136,\\\\\n \\end{array}$$\\ldots$", "Position für erstes Quartil: $1+0.25\\cdot 65 = 17.25$. Wir suchen also einen Wert an der Stelle 0.25 zwischen $x_{17}=68$ und $x_{18}=70$. Das erste Quartil ist damit $68 + 0.25 \\cdot (70-68) = 68.5$<br>Position für drittes Quartil: $i=1+0.75\\cdot 65 = 49.75$. Wir suchen also einen Wert an der Stelle 0.75 zwischen $x_{49}=134$ und $x_{50}=135$. Das dritte Quartil ist damit $134 + 0.75 \\cdot (135-134) = 134.75$<br>"], ["Anzahl Werte $n=88$.<br>$\\begin{array}{lccccclcccccl}\n\\ldots & x_{19} & x_{20} & x_{21} & x_{22} & x_{23} & \\ldots  & x_{64} & x_{65} & x_{66} & x_{67} & x_{68}\\\\\n \\ldots & 71 & 73 & 74 & 74 & 78 & \\ldots & 121, & 122, & 125, & 129, & 129,\\\\\n \\end{array}$$\\ldots$", "Position für erstes Quartil: $1+0.25\\cdot 87 = 22.75$. Wir suchen also einen Wert an der Stelle 0.75 zwischen $x_{22}=74$ und $x_{23}=78$. Das erste Quartil ist damit $74 + 0.75 \\cdot (78-74) = 77.0$<br>Position für drittes Quartil: $i=1+0.75\\cdot 87 = 66.25$. Wir suchen also einen Wert an der Stelle 0.25 zwischen $x_{66}=125$ und $x_{67}=129$. Das dritte Quartil ist damit $125 + 0.25 \\cdot (129-125) = 126.0$<br>"], ["Anzahl Werte $n=60$.<br>$\\begin{array}{lccccclcccccl}\n\\ldots & x_{12} & x_{13} & x_{14} & x_{15} & x_{16} & \\ldots  & x_{44} & x_{45} & x_{46} & x_{47} & x_{48}\\\\\n \\ldots & 71 & 73 & 75 & 75 & 76 & \\ldots & 135, & 136, & 137, & 144, & 144,\\\\\n \\end{array}$$\\ldots$", "Position für erstes Quartil: $1+0.25\\cdot 59 = 15.75$. Wir suchen also einen Wert an der Stelle 0.75 zwischen $x_{15}=75$ und $x_{16}=76$. Das erste Quartil ist damit $75 + 0.75 \\cdot (76-75) = 75.75$<br>Position für drittes Quartil: $i=1+0.75\\cdot 59 = 45.25$. Wir suchen also einen Wert an der Stelle 0.25 zwischen $x_{45}=136$ und $x_{46}=137$. Das dritte Quartil ist damit $136 + 0.25 \\cdot (137-136) = 136.25$<br>"], ["Anzahl Werte $n=64$.<br>$\\begin{array}{lccccclcccccl}\n\\ldots & x_{14} & x_{15} & x_{16} & x_{17} & x_{18} & \\ldots  & x_{46} & x_{47} & x_{48} & x_{49} & x_{50}\\\\\n \\ldots & 64 & 64 & 65 & 68 & 73 & \\ldots & 117, & 120, & 137, & 138, & 139,\\\\\n \\end{array}$$\\ldots$", "Position für erstes Quartil: $1+0.25\\cdot 63 = 16.75$. Wir suchen also einen Wert an der Stelle 0.75 zwischen $x_{16}=65$ und $x_{17}=68$. Das erste Quartil ist damit $65 + 0.75 \\cdot (68-65) = 67.25$<br>Position für drittes Quartil: $i=1+0.75\\cdot 63 = 48.25$. Wir suchen also einen Wert an der Stelle 0.25 zwischen $x_{48}=137$ und $x_{49}=138$. Das dritte Quartil ist damit $137 + 0.25 \\cdot (138-137) = 137.25$<br>"], ["Anzahl Werte $n=76$.<br>$\\begin{array}{lccccclcccccl}\n\\ldots & x_{18} & x_{19} & x_{20} & x_{21} & x_{22} & \\ldots  & x_{55} & x_{56} & x_{57} & x_{58} & x_{59}\\\\\n \\ldots & 71 & 72 & 73 & 74 & 74 & \\ldots & 120, & 120, & 123, & 124, & 125,\\\\\n \\end{array}$$\\ldots$", "Position für erstes Quartil: $1+0.25\\cdot 75 = 19.75$. Wir suchen also einen Wert an der Stelle 0.75 zwischen $x_{19}=72$ und $x_{20}=73$. Das erste Quartil ist damit $72 + 0.75 \\cdot (73-72) = 72.75$<br>Position für drittes Quartil: $i=1+0.75\\cdot 75 = 57.25$. Wir suchen also einen Wert an der Stelle 0.25 zwischen $x_{57}=123$ und $x_{58}=124$. Das dritte Quartil ist damit $123 + 0.25 \\cdot (124-123) = 123.25$<br>"], ["Anzahl Werte $n=74$.<br>$\\begin{array}{lccccclcccccl}\n\\ldots & x_{16} & x_{17} & x_{18} & x_{19} & x_{20} & \\ldots  & x_{54} & x_{55} & x_{56} & x_{57} & x_{58}\\\\\n \\ldots & 66 & 67 & 70 & 71 & 72 & \\ldots & 121, & 123, & 126, & 129, & 133,\\\\\n \\end{array}$$\\ldots$", "Position für erstes Quartil: $1+0.25\\cdot 73 = 19.25$. Wir suchen also einen Wert an der Stelle 0.25 zwischen $x_{19}=71$ und $x_{20}=72$. Das erste Quartil ist damit $71 + 0.25 \\cdot (72-71) = 71.25$<br>Position für drittes Quartil: $i=1+0.75\\cdot 73 = 55.75$. Wir suchen also einen Wert an der Stelle 0.75 zwischen $x_{55}=123$ und $x_{56}=126$. Das dritte Quartil ist damit $123 + 0.75 \\cdot (126-123) = 125.25$<br>"], ["Anzahl Werte $n=64$.<br>$\\begin{array}{lccccclcccccl}\n\\ldots & x_{14} & x_{15} & x_{16} & x_{17} & x_{18} & \\ldots  & x_{45} & x_{46} & x_{47} & x_{48} & x_{49}\\\\\n \\ldots & 68 & 79 & 79 & 80 & 80 & \\ldots & 132, & 133, & 134, & 136, & 137,\\\\\n \\end{array}$$\\ldots$", "Position für erstes Quartil: $1+0.25\\cdot 63 = 16.75$. Wir suchen also einen Wert an der Stelle 0.75 zwischen $x_{16}=79$ und $x_{17}=80$. Das erste Quartil ist damit $79 + 0.75 \\cdot (80-79) = 79.75$<br>Position für drittes Quartil: $i=1+0.75\\cdot 63 = 48.25$. Wir suchen also einen Wert an der Stelle 0.25 zwischen $x_{48}=136$ und $x_{49}=137$. Das dritte Quartil ist damit $136 + 0.25 \\cdot (137-136) = 136.25$<br>"], ["Anzahl Werte $n=68$.<br>$\\begin{array}{lccccclcccccl}\n\\ldots & x_{17} & x_{18} & x_{19} & x_{20} & x_{21} & \\ldots  & x_{51} & x_{52} & x_{53} & x_{54} & x_{55}\\\\\n \\ldots & 71 & 72 & 72 & 75 & 75 & \\ldots & 126, & 130, & 131, & 133, & 135,\\\\\n \\end{array}$$\\ldots$", "Position für erstes Quartil: $1+0.25\\cdot 67 = 17.75$. Wir suchen also einen Wert an der Stelle 0.75 zwischen $x_{17}=71$ und $x_{18}=72$. Das erste Quartil ist damit $71 + 0.75 \\cdot (72-71) = 71.75$<br>Position für drittes Quartil: $i=1+0.75\\cdot 67 = 51.25$. Wir suchen also einen Wert an der Stelle 0.25 zwischen $x_{51}=126$ und $x_{52}=130$. Das dritte Quartil ist damit $126 + 0.25 \\cdot (130-126) = 127.0$<br>"]], [["Anzahl Werte $n=44$.<br>$\\begin{array}{lccccclcccccl}\n\\ldots & x_{9} & x_{10} & x_{11} & x_{12} & x_{13} & \\ldots  & x_{31} & x_{32} & x_{33} & x_{34} & x_{35}\\\\\n \\ldots & 60 & 61 & 67 & 70 & 71 & \\ldots & 114, & 119, & 121, & 126, & 135,\\\\\n \\end{array}$$\\ldots$", "Position für erstes Quartil: $1+0.25\\cdot 43 = 11.75$. Wir suchen also einen Wert an der Stelle 0.75 zwischen $x_{11}=67$ und $x_{12}=70$. Das erste Quartil ist damit $67 + 0.75 \\cdot (70-67) = 69.25$<br>Position für drittes Quartil: $i=1+0.75\\cdot 43 = 33.25$. Wir suchen also einen Wert an der Stelle 0.25 zwischen $x_{33}=121$ und $x_{34}=126$. Das dritte Quartil ist damit $121 + 0.25 \\cdot (126-121) = 122.25$<br>"], ["Anzahl Werte $n=66$.<br>$\\begin{array}{lccccclcccccl}\n\\ldots & x_{16} & x_{17} & x_{18} & x_{19} & x_{20} & \\ldots  & x_{47} & x_{48} & x_{49} & x_{50} & x_{51}\\\\\n \\ldots & 68 & 72 & 77 & 79 & 79 & \\ldots & 127, & 128, & 129, & 130, & 131,\\\\\n \\end{array}$$\\ldots$", "Position für erstes Quartil: $1+0.25\\cdot 65 = 17.25$. Wir suchen also einen Wert an der Stelle 0.25 zwischen $x_{17}=72$ und $x_{18}=77$. Das erste Quartil ist damit $72 + 0.25 \\cdot (77-72) = 73.25$<br>Position für drittes Quartil: $i=1+0.75\\cdot 65 = 49.75$. Wir suchen also einen Wert an der Stelle 0.75 zwischen $x_{49}=129$ und $x_{50}=130$. Das dritte Quartil ist damit $129 + 0.75 \\cdot (130-129) = 129.75$<br>"], ["Anzahl Werte $n=66$.<br>$\\begin{array}{lccccclcccccl}\n\\ldots & x_{14} & x_{15} & x_{16} & x_{17} & x_{18} & \\ldots  & x_{47} & x_{48} & x_{49} & x_{50} & x_{51}\\\\\n \\ldots & 62 & 63 & 64 & 68 & 70 & \\ldots & 131, & 134, & 134, & 135, & 136,\\\\\n \\end{array}$$\\ldots$", "Position für erstes Quartil: $1+0.25\\cdot 65 = 17.25$. Wir suchen also einen Wert an der Stelle 0.25 zwischen $x_{17}=68$ und $x_{18}=70$. Das erste Quartil ist damit $68 + 0.25 \\cdot (70-68) = 68.5$<br>Position für drittes Quartil: $i=1+0.75\\cdot 65 = 49.75$. Wir suchen also einen Wert an der Stelle 0.75 zwischen $x_{49}=134$ und $x_{50}=135$. Das dritte Quartil ist damit $134 + 0.75 \\cdot (135-134) = 134.75$<br>"], ["Anzahl Werte $n=88$.<br>$\\begin{array}{lccccclcccccl}\n\\ldots & x_{19} & x_{20} & x_{21} & x_{22} & x_{23} & \\ldots  & x_{64} & x_{65} & x_{66} & x_{67} & x_{68}\\\\\n \\ldots & 71 & 73 & 74 & 74 & 78 & \\ldots & 121, & 122, & 125, & 129, & 129,\\\\\n \\end{array}$$\\ldots$", "Position für erstes Quartil: $1+0.25\\cdot 87 = 22.75$. Wir suchen also einen Wert an der Stelle 0.75 zwischen $x_{22}=74$ und $x_{23}=78$. Das erste Quartil ist damit $74 + 0.75 \\cdot (78-74) = 77.0$<br>Position für drittes Quartil: $i=1+0.75\\cdot 87 = 66.25$. Wir suchen also einen Wert an der Stelle 0.25 zwischen $x_{66}=125$ und $x_{67}=129$. Das dritte Quartil ist damit $125 + 0.25 \\cdot (129-125) = 126.0$<br>"], ["Anzahl Werte $n=60$.<br>$\\begin{array}{lccccclcccccl}\n\\ldots & x_{12} & x_{13} & x_{14} & x_{15} & x_{16} & \\ldots  & x_{44} & x_{45} & x_{46} & x_{47} & x_{48}\\\\\n \\ldots & 71 & 73 & 75 & 75 & 76 & \\ldots & 135, & 136, & 137, & 144, & 144,\\\\\n \\end{array}$$\\ldots$", "Position für erstes Quartil: $1+0.25\\cdot 59 = 15.75$. Wir suchen also einen Wert an der Stelle 0.75 zwischen $x_{15}=75$ und $x_{16}=76$. Das erste Quartil ist damit $75 + 0.75 \\cdot (76-75) = 75.75$<br>Position für drittes Quartil: $i=1+0.75\\cdot 59 = 45.25$. Wir suchen also einen Wert an der Stelle 0.25 zwischen $x_{45}=136$ und $x_{46}=137$. Das dritte Quartil ist damit $136 + 0.25 \\cdot (137-136) = 136.25$<br>"], ["Anzahl Werte $n=64$.<br>$\\begin{array}{lccccclcccccl}\n\\ldots & x_{14} & x_{15} & x_{16} & x_{17} & x_{18} & \\ldots  & x_{46} & x_{47} & x_{48} & x_{49} & x_{50}\\\\\n \\ldots & 64 & 64 & 65 & 68 & 73 & \\ldots & 117, & 120, & 137, & 138, & 139,\\\\\n \\end{array}$$\\ldots$", "Position für erstes Quartil: $1+0.25\\cdot 63 = 16.75$. Wir suchen also einen Wert an der Stelle 0.75 zwischen $x_{16}=65$ und $x_{17}=68$. Das erste Quartil ist damit $65 + 0.75 \\cdot (68-65) = 67.25$<br>Position für drittes Quartil: $i=1+0.75\\cdot 63 = 48.25$. Wir suchen also einen Wert an der Stelle 0.25 zwischen $x_{48}=137$ und $x_{49}=138$. Das dritte Quartil ist damit $137 + 0.25 \\cdot (138-137) = 137.25$<br>"], ["Anzahl Werte $n=76$.<br>$\\begin{array}{lccccclcccccl}\n\\ldots & x_{18} & x_{19} & x_{20} & x_{21} & x_{22} & \\ldots  & x_{55} & x_{56} & x_{57} & x_{58} & x_{59}\\\\\n \\ldots & 71 & 72 & 73 & 74 & 74 & \\ldots & 120, & 120, & 123, & 124, & 125,\\\\\n \\end{array}$$\\ldots$", "Position für erstes Quartil: $1+0.25\\cdot 75 = 19.75$. Wir suchen also einen Wert an der Stelle 0.75 zwischen $x_{19}=72$ und $x_{20}=73$. Das erste Quartil ist damit $72 + 0.75 \\cdot (73-72) = 72.75$<br>Position für drittes Quartil: $i=1+0.75\\cdot 75 = 57.25$. Wir suchen also einen Wert an der Stelle 0.25 zwischen $x_{57}=123$ und $x_{58}=124$. Das dritte Quartil ist damit $123 + 0.25 \\cdot (124-123) = 123.25$<br>"], ["Anzahl Werte $n=74$.<br>$\\begin{array}{lccccclcccccl}\n\\ldots & x_{16} & x_{17} & x_{18} & x_{19} & x_{20} & \\ldots  & x_{54} & x_{55} & x_{56} & x_{57} & x_{58}\\\\\n \\ldots & 66 & 67 & 70 & 71 & 72 & \\ldots & 121, & 123, & 126, & 129, & 133,\\\\\n \\end{array}$$\\ldots$", "Position für erstes Quartil: $1+0.25\\cdot 73 = 19.25$. Wir suchen also einen Wert an der Stelle 0.25 zwischen $x_{19}=71$ und $x_{20}=72$. Das erste Quartil ist damit $71 + 0.25 \\cdot (72-71) = 71.25$<br>Position für drittes Quartil: $i=1+0.75\\cdot 73 = 55.75$. Wir suchen also einen Wert an der Stelle 0.75 zwischen $x_{55}=123$ und $x_{56}=126$. Das dritte Quartil ist damit $123 + 0.75 \\cdot (126-123) = 125.25$<br>"], ["Anzahl Werte $n=64$.<br>$\\begin{array}{lccccclcccccl}\n\\ldots & x_{14} & x_{15} & x_{16} & x_{17} & x_{18} & \\ldots  & x_{45} & x_{46} & x_{47} & x_{48} & x_{49}\\\\\n \\ldots & 68 & 79 & 79 & 80 & 80 & \\ldots & 132, & 133, & 134, & 136, & 137,\\\\\n \\end{array}$$\\ldots$", "Position für erstes Quartil: $1+0.25\\cdot 63 = 16.75$. Wir suchen also einen Wert an der Stelle 0.75 zwischen $x_{16}=79$ und $x_{17}=80$. Das erste Quartil ist damit $79 + 0.75 \\cdot (80-79) = 79.75$<br>Position für drittes Quartil: $i=1+0.75\\cdot 63 = 48.25$. Wir suchen also einen Wert an der Stelle 0.25 zwischen $x_{48}=136$ und $x_{49}=137$. Das dritte Quartil ist damit $136 + 0.25 \\cdot (137-136) = 136.25$<br>"], ["Anzahl Werte $n=68$.<br>$\\begin{array}{lccccclcccccl}\n\\ldots & x_{17} & x_{18} & x_{19} & x_{20} & x_{21} & \\ldots  & x_{51} & x_{52} & x_{53} & x_{54} & x_{55}\\\\\n \\ldots & 71 & 72 & 72 & 75 & 75 & \\ldots & 126, & 130, & 131, & 133, & 135,\\\\\n \\end{array}$$\\ldots$", "Position für erstes Quartil: $1+0.25\\cdot 67 = 17.75$. Wir suchen also einen Wert an der Stelle 0.75 zwischen $x_{17}=71$ und $x_{18}=72$. Das erste Quartil ist damit $71 + 0.75 \\cdot (72-71) = 71.75$<br>Position für drittes Quartil: $i=1+0.75\\cdot 67 = 51.25$. Wir suchen also einen Wert an der Stelle 0.25 zwischen $x_{51}=126$ und $x_{52}=130$. Das dritte Quartil ist damit $126 + 0.25 \\cdot (130-126) = 127.0$<br>"]],
-" <hr> ", " <hr> ");});+" <hr> ", " <hr> ");
 </JS> </JS>
 <HTML> <HTML>
  • lehrkraefte/blc/miniaufgaben.txt
  • Last modified: 2024/04/30 10:02
  • by Ivo Blöchliger