-
Notifications
You must be signed in to change notification settings - Fork 0
/
symbols_powers.html
474 lines (420 loc) · 19.2 KB
/
symbols_powers.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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="Exponential and Power Notation Tool | Pangram World" />
<meta property="og:description"
content="Easily access and copy exponential and power notations like 10¹⁵ or 3.3 × 10¹⁵ with our Exponential and Power Notation Tool. Ideal for students, educators, and professionals in need of accurate scientific and mathematical notation in their work." />
<meta property="og:image" content="https://www.pangram-world.com/images/pangram-world-title.png" />
<meta property="og:url" content="https://www.pangram-world.com/symbols_powers.html" />
<title>Exponential and Power Notation Tool | Pangram World</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="style/bootstrap.css">
<link rel="stylesheet" href="style/styles.css">
<link rel="stylesheet" href="style/base.css">
<link rel="stylesheet" href="style/cards.css">
<link rel="stylesheet" href="style/symbols.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<!-- ... favicon ... -->
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="192x192" href="images/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="512x512" href="images/android-chrome-512x512.png">
<script src="scripts/main.js" defer></script>
<script src="scripts/bootstrap.bundle.js"></script>
<script src="https://kit.fontawesome.com/18fe617275.js" crossorigin="anonymous"></script>
<!-- Add any additional meta tags and scripts here -->
</head>
<body>
<!-- Main content area where your page content will go -->
<header id="globalHeader"></header>
<main>
<!-- Section for Copy Symbols -->
<div class="container my-3">
<h2>Copy Symbols</h2>
<p class="info-text">Suitable to copy and paste into <i class="fab fa-facebook facebook-icon"></i></p>
<small>Simply click the button of the symbol you want copied and it copies automatically then paste into your
favourite social media platform.</small>
<!-- Row for the checkbox and help button -->
<div class="row align-items-center my-2">
<div class="col-md-auto">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" id="addMultiplicationSign">
<label class="form-check-label" for="addMultiplicationSign">Add "×" before "10ⁿ"</label>
</div>
</div>
<div class="col-md-auto">
<button type="button" class="btn btn-info btn-sm red" data-bs-toggle="modal"
data-bs-target="#multiplicationSignHelpModal">
?
</button>
</div>
</div> <!-- Closing row div -->
<section class="symbols-grid">
<!-- x squared -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="x²">x²</button>
<div class="copied-overlay">Copied!</div>
<label>x Squared</label>
</div>
<!-- x cubed -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="x³">x³</button>
<div class="copied-overlay">Copied!</div>
<label>x Cubed</label>
</div>
<!-- y squared -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="y²">y²</button>
<div class="copied-overlay">Copied!</div>
<label>y Squared</label>
</div>
<!-- y cubed -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="y³">y³</button>
<div class="copied-overlay">Copied!</div>
<label>y Cubed</label>
</div>
<!-- Other powers or symbols as needed -->
<!-- Example: z squared -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="z²">z²</button>
<div class="copied-overlay">Copied!</div>
<label>z Squared</label>
</div>
<!-- Example: z cubed -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="z³">z³</button>
<div class="copied-overlay">Copied!</div>
<label>z Cubed</label>
</div>
</section>
<!-- 10 squared -->
<section class="symbols-grid">
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10²">10²</button>
<div class="copied-overlay">Copied!</div>
<label>10 Squared</label>
</div>
<!-- 10 cubed -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10³">10³</button>
<div class="copied-overlay">Copied!</div>
<label>10 Cubed</label>
</div>
<!-- 10 to the 4th power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁴">10⁴</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the 4th</label>
</div>
<!-- 10 to the 5th power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁵">10⁵</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the 5th</label>
</div>
<!-- 10 to the 6th power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁶">10⁶</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the 6th</label>
</div>
<!-- 10 to the 7th power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁷">10⁷</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the 7th</label>
</div>
<!-- 10 to the 8th power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁸">10⁸</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the 8th</label>
</div>
<!-- 10 to the 9th power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁹">10⁹</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the 9th</label>
</div>
<!-- 10 to the 10th power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10¹⁰">10¹⁰</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the 10th</label>
</div>
<!-- 10 to the 11th power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10¹¹">10¹¹</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the 11th</label>
</div>
<!-- 10 to the 12th power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10¹²">10¹²</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the 12th</label>
</div>
<!-- 10 to the 13th power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10¹³">10¹³</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the 13th</label>
</div>
<!-- 10 to the 14th power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10¹⁴">10¹⁴</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the 14th</label>
</div>
<!-- 10 to the 15th power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10¹⁵">10¹⁵</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the 15th</label>
</div>
<!-- 10 to the 15th power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10¹⁵">10¹⁵</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the 15th</label>
</div>
<!-- 10 to the 16th power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10¹⁶">10¹⁶</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the 16th</label>
</div>
<!-- 10 to the 17th power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10¹⁷">10¹⁷</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the 17th</label>
</div>
<!-- 10 to the 18th power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10¹⁸">10¹⁸</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the 18th</label>
</div>
<!-- 10 to the 19th power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10¹⁹">10¹⁹</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the 19th</label>
</div>
<!-- 10 to the 20th power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10²⁰">10²⁰</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the 20th</label>
</div>
<!-- 10 to the 21st power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10²¹">10²¹</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the 21st</label>
</div>
<!-- 10 to the 100th power (Googol) -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10¹⁰⁰">10¹⁰⁰</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the 100th (Googol)</label>
</div>
</section>
<section class="symbols-grid">
<!-- 10 to the -2 power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻²">10⁻²</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -2nd</label>
</div>
<!-- 10 to the -3 power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻³">10⁻³</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -3rd</label>
</div>
<!-- 10 to the -4 power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻⁴">10⁻⁴</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -4th</label>
</div>
<!-- 10 to the -5 power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻⁵">10⁻⁵</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -5th</label>
</div>
<!-- 10 to the -6 power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻⁶">10⁻⁶</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -6th</label>
</div>
<!-- 10 to the -7 power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻⁷">10⁻⁷</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -7th</label>
</div>
<!-- 10 to the -8 power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻⁸">10⁻⁸</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -8th</label>
</div>
<!-- 10 to the -9 power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻⁹">10⁻⁹</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -9th</label>
</div>
<!-- 10 to the -10 power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻¹⁰">10⁻¹⁰</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -10th</label>
</div>
<!-- 10 to the -11 power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻¹¹">10⁻¹¹</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -11th</label>
</div>
<!-- 10 to the -12 power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻¹²">10⁻¹²</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -12th</label>
</div>
<!-- 10 to the -13 power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻¹³">10⁻¹³</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -13th</label>
</div>
<!-- 10 to the -14 power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻¹⁴">10⁻¹⁴</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -14th</label>
</div>
<!-- 10 to the -15 power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻¹⁵">10⁻¹⁵</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -15th</label>
</div>
<!-- 10 to the -16 power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻¹⁶">10⁻¹⁶</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -16th</label>
</div>
<!-- 10 to the -17 power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻¹⁷">10⁻¹⁷</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -17th</label>
</div>
<!-- 10 to the -18 power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻¹⁸">10⁻¹⁸</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -18th</label>
</div>
<!-- 10 to the -19 power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻¹⁹">10⁻¹⁹</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -19th</label>
</div>
<!-- 10 to the -20 power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻²⁰">10⁻²⁰</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -20th</label>
</div>
<!-- 10 to the -21st power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻²¹">10⁻²¹</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -21st</label>
</div>
<!-- 10 to the -100th power (Negative Googol) -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻¹⁰⁰">10⁻¹⁰⁰</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -100th (Negative Googol)</label>
</div>
</section>
<section class="symbols-grid">
<!-- 10 to the n power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10ⁿ">10ⁿ</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the n</label>
</div>
<!-- 10 to the -n power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻ⁿ">10⁻ⁿ</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -n</label>
</div>
<!-- 10 to the x power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10ˣ">10ˣ</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the x</label>
</div>
<!-- 10 to the -x power -->
<div class="symbol-container">
<button class="symbol-btn" data-symbol="10⁻ˣ">10⁻ˣ</button>
<div class="copied-overlay">Copied!</div>
<label>10 to the -x</label>
</div>
</section>
</div> <!-- Closing container my-3 div -->
<!-- Help Modal for Adding Multiplication Sign -->
<div class="modal fade" id="multiplicationSignHelpModal" tabindex="-1"
aria-labelledby="multiplicationSignHelpModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="multiplicationSignHelpModalLabel">Multiplication Sign Guide</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<p>When dealing with scientific notation, a multiplication sign can be used to clarify the expression.
For example:</p>
<ul>
<li>Without multiplication sign: <strong>10³</strong> is "ten to the power of three".</li>
<li>With multiplication sign: <strong>×10³</strong> emphasizes the operation "multiply by ten to the
power of three".</li>
</ul>
<p>This is particularly useful in written or printed math expressions to prevent misinterpretation of
the notation.</p>
<p>Select the checkbox to automatically add a "×" before "10ⁿ" in your expressions.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Scroll to Top button (hidden by default with inline style.css) -->
<button onclick="scrollToTop()" id="scrollToTopButton"
style="display: none; position: fixed; bottom: 20px; right: 20px;"><i class="fas fa-arrow-up"></i></button>
</main>
<footer id="globalFooter"></footer>
<script src="scripts/toUnicodeVariant.js"></script>
<script src="scripts/symbols.js"></script>
<script src="scripts/symbolsAddx.js"></script>
</body>
</html>