Vervollständige die Tabelle. Suche die Zahl, die mit dem Faktor in der linken Spalte multipliziert die Stufenzahl in der Kopfzeile ergibt.
<table>
<tr>
<th>Faktor</th>
<th>\(10\,000\)</th>
<th>\(100\,000\)</th>
<th>\(1\,000\,000\)</th>
</tr>
<tr>
<td>\(2 \cdot \dots\)</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>\(4 \cdot \dots\)</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>\(5 \cdot \dots\)</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>\(8 \cdot \dots\)</td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
Denkanstöße
- Überlege dir, wie oft die Zahl in die Stufenzahl passt.
- Wenn du eine Zahl durch 4 teilen musst, kannst du auch zweimal hintereinander durch 2 teilen.
- Die Ergebnisse in einer Zeile hängen eng zusammen – achte auf die Anzahl der Nullen.
Lösung
Die fehlenden Faktoren werden durch Division der Stufenzahl durch den gegebenen Faktor berechnet:
1. Spalte (\(10\,000\)): \(10\,000 : 2 = 5\,000\); \(10\,000 : 4 = 2\,500\); \(10\,000 : 5 = 2\,000\); \(10\,000 : 8 = 1\,250\).
2. Spalte (\(100\,000\)): \(100\,000 : 2 = 50\,000\); \(100\,000 : 4 = 25\,000\); \(100\,000 : 5 = 20\,000\); \(100\,000 : 8 = 12\,500\).
3. Spalte (\(1\,000\,000\)): \(1\,000\,000 : 2 = 500\,000\); \(1\,000\,000 : 4 = 250\,000\); \(1\,000\,000 : 5 = 200\,000\); \(1\,000\,000 : 8 = 125\,000\).
Antwort
<table>
<tr>
<th>Faktor</th>
<th>\(10\,000\)</th>
<th>\(100\,000\)</th>
<th>\(1\,000\,000\)</th>
</tr>
<tr>
<td>\(2 \cdot \dots\)</td>
<td>\(5\,000\)</td>
<td>\(50\,000\)</td>
<td>\(500\,000\)</td>
</tr>
<tr>
<td>\(4 \cdot \dots\)</td>
<td>\(2\,500\)</td>
<td>\(25\,000\)</td>
<td>\(250\,000\)</td>
</tr>
<tr>
<td>\(5 \cdot \dots\)</td>
<td>\(2\,000\)</td>
<td>\(20\,000\)</td>
<td>\(200\,000\)</td>
</tr>
<tr>
<td>\(8 \cdot \dots\)</td>
<td>\(1\,250\)</td>
<td>\(12\,500\)</td>
<td>\(125\,000\)</td>
</tr>
</table>