-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsat_math.html
More file actions
59 lines (53 loc) · 2.42 KB
/
Copy pathsat_math.html
File metadata and controls
59 lines (53 loc) · 2.42 KB
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>SAT Math Formulas - 10-A</title>
<style>
body { background: #111; color: #fff; font-family: 'Segoe UI', sans-serif; padding: 40px; }
.formula-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.card { background: #222; border: 1px solid #d4af37; padding: 20px; border-radius: 10px; transition: 0.3s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); }
h2 { color: #d4af37; border-bottom: 1px solid #444; padding-bottom: 10px; }
.math { font-family: "Courier New", monospace; color: #00ffcc; font-size: 1.2em; }
.back { display: inline-block; margin-bottom: 20px; color: #888; text-decoration: none; }
</style>
</head>
<body>
<a href="index.html" class="back">← Назад</a>
<h1>SAT Math: Essential Formulas</h1>
<div class="formula-grid">
<div class="card">
<h2>Linear Equations</h2>
<p>Slope-intercept form: <span class="math">y = mx + b</span></p>
<p>Slope formula: <span class="math">m = (y₂-y₁)/(x₂-x₁)</span></p>
</div>
<div class="card">
<h2>Quadratic Equations</h2>
<p>Standard: <span class="math">ax² + bx + c = 0</span></p>
<p>Vertex x: <span class="math">x = -b / 2a</span></p>
</div>
<div class="card">
<h2>Statistics & Data</h2>
<p>Mean: <span class="math">Sum / Number of items</span></p>
<p>Probability: <span class="math">Desired / Total</span></p>
</div>
<div class="card">
<h2>Percentages</h2>
<p>Change: <span class="math">[(New-Old)/Old]×100</span></p>
<p>Growth: <span class="math">y = a(1+r)ᵗ</span></p>
</div>
<div class="card">
<h2>Math Dictionary</h2>
<p>Integer: <span class="math">Butun son</span></p>
<p>Remainder: <span class="math">Qoldiq</span></p>
<p>Denominator: <span class="math">Mahraj</span></p>
</div>
<div class="card">
<h2>Geometry</h2>
<p>Circle Area: <span class="math">A = πr²</span></p>
<p>Pythagorean: <span class="math">a² + b² = c²</span></p>
</div>
</div>
</body>
</html>