-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvektoren_urlaubskosten.html
194 lines (176 loc) · 6.63 KB
/
vektoren_urlaubskosten.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Multiple-Choice-Test: Urlaubskosten</title>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
}
.container {
max-width: 600px;
margin: 20px auto;
padding: 20px;
background: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #4CAF50;
}
.question {
margin: 20px 0;
}
.option {
display: flex;
align-items: center;
justify-content: flex-start;
padding: 10px;
background: #f9f9f9;
margin-bottom: 10px;
border: 1px solid #ddd;
border-radius: 4px;
cursor: pointer;
transition: background 0.3s ease;
}
.option:hover {
background: #e0f7fa;
}
button {
display: block;
width: 100%;
padding: 10px;
background: #4CAF50;
color: white;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
transition: background 0.3s ease;
}
button:hover {
background: #45a049;
}
.result {
margin-top: 20px;
text-align: center;
font-weight: bold;
}
.math {
font-size: 1.2em;
}
.explanation {
display: none;
font-size: 0.9em;
background: #fff3e0;
padding: 10px;
border-left: 4px solid #ff9800;
margin-top: 10px;
}
.option .explanation {
display: none;
margin-left: 20px;
}
</style>
</head>
<body>
<div class="container">
<h1>Urlaubskosten</h1>
<div class="question">
<p class="math">
Luis war vor einem Jahr auf Urlaub. Die Kosten für den Flug betrugen 180 € und für das Hotel 360 €.
Inzwischen ist alles um 5 % teurer geworden. Welcher Vektor gibt die neuen Preise an, wenn die erste
Koordinate den Flugpreis und die zweite Koordinate den Hotelpreis angibt? Kreuze die beiden zutreffenden
Vektoren an. <strong>[2 aus 5]</strong>
</p>
<div id="answers" hidden>
<div class="option" onclick="toggleSelection(this, 'option1')">
<span>\(150 \cdot \begin{pmatrix} 180 \\ 360 \end{pmatrix}\)</span>
<div class="explanation">Dieser Vektor ist falsch, da die Multiplikation mit 150 keinen Bezug zu den
Preissteigerungen hat.
</div>
</div>
<div class="option" onclick="toggleSelection(this, 'option2')">
<span>\(1,05 \cdot \begin{pmatrix} 180 \\ 360 \end{pmatrix}\)</span>
<div class="explanation">Dieser Vektor ist korrekt, da die Preise um 5 % gestiegen sind: \(1,05 \cdot
\begin{pmatrix} 180 \\ 360 \end{pmatrix}\).
</div>
</div>
<div class="option" onclick="toggleSelection(this, 'option3')">
<span>\(\begin{pmatrix} 270 \\ 540 \end{pmatrix}\)</span>
<div class="explanation">Dieser Vektor ist falsch, da die Werte zu hoch angesetzt sind und keine
Preissteigerung von 5 % darstellen.
</div>
</div>
<div class="option" onclick="toggleSelection(this, 'option4')">
<span>\(\begin{pmatrix} 189 \\ 378 \end{pmatrix}\)</span>
<div class="explanation">Dieser Vektor ist korrekt, da er die exakten neuen Preise für Flug und Hotel
nach einer Steigerung um 5 % angibt.
</div>
</div>
<div class="option" onclick="toggleSelection(this, 'option5')">
<span>\(\begin{pmatrix} 378 \\ 189 \end{pmatrix}\)</span>
<div class="explanation">Dieser Vektor ist falsch, da die Reihenfolge der Koordinaten vertauscht ist.
</div>
</div>
</div>
<button type="button" onclick="checkAnswers()">Antworten überprüfen</button>
<div id="result" class="result"></div>
</div>
</div>
<script>
function toggleSelection(element) {
const isSelected = element.classList.contains('selected');
if (isSelected) {
element.classList.remove('selected');
} else {
element.classList.add('selected');
}
}
function checkAnswers() {
const correctAnswers = ['option2', 'option4'];
const options = document.querySelectorAll('.option');
const resultDiv = document.getElementById('result');
let selectedOptions = [];
options.forEach((option, index) => {
if (option.classList.contains('selected')) {
selectedOptions.push(`option${index + 1}`);
}
});
let allCorrect = true;
options.forEach((option, index) => {
const explanation = option.querySelector('.explanation');
if (selectedOptions.includes(`option${index + 1}`) && !correctAnswers.includes(`option${index + 1}`)) {
explanation.style.display = 'block';
allCorrect = false;
} else {
explanation.style.display = 'none';
}
});
if (selectedOptions.length === 2 && selectedOptions.every(opt => correctAnswers.includes(opt))) {
resultDiv.textContent = 'Richtig! Gut gemacht!';
resultDiv.className = 'result correct';
} else {
resultDiv.textContent = allCorrect ? 'Bitte wählen Sie genau zwei Antworten aus.' : 'Leider falsch. Überprüfen Sie die Erklärungen.';
resultDiv.className = 'result incorrect';
}
}
document.addEventListener('DOMContentLoaded', () => {
const answersDiv = document.getElementById('answers');
const options = Array.from(answersDiv.children);
// Shuffle the options array
options.sort(() => Math.random() - 0.5);
// Append the shuffled options back to the answersDiv
options.forEach(option => answersDiv.appendChild(option));
answersDiv.hidden = false;
});
</script>
</body>
</html>