-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
5950 lines (5741 loc) · 175 KB
/
index.html
File metadata and controls
5950 lines (5741 loc) · 175 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
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
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset="UTF-8">
<title>Home of Basic Geometry</title>
<link rel="icon" type="image/png" sizes="256x256" href="android-chrome-256x256.png">
<link rel="icon" type="image/png" sizes="192x192" href="android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#000000">
<link rel="manifest" href="manifest.json">
<link href="https://fonts.googleapis.com/css2?family=OpenDyslexic&display=swap" rel="stylesheet">
<link rel="canonical" href="https://basic-geometry.pages.dev">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Gaál Sándor">
<meta name="description" content="Exact formulas for real-world applications like analysis, engineering design solutions, computer graphics rendering, algorithm optimization, and navigation">
<meta name="keywords" content="Core Geometric System, Exact Geometric Calculations, Analysis, Engineering Design Solutions, Computer Graphics Rendering, Algorithm Optimization, Navigation">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:creator" content="@gmac4247">
<meta name="twitter:site" content="https://basic-geometry.github.io">
<meta name="twitter:title" content="Home of Basic Geometry">
<meta name="twitter:description" content="Exact formulas for real-world applications like analysis, engineering design solutions, computer graphics rendering, algorithm optimization, and navigation">
<meta name="twitter:image" content="android-chrome-256x256.png">
<meta name="msapplication-TileColor" content="#000000">
<meta name="theme-color" content="#000000">
<style>
* {
margin: 0;
padding: 0;
}
.imgbox {
display: grid;
height: 100%;
}
.center-fit {
max-width: 100%;
max-height: 100vh;
margin: auto;
}
#cookie-notice {
position: fixed;
top: 0;
left: 0;
right: 0;
background-color: #f2f2f2;
padding: 10px;
display: flex;
align-items: center;
justify-content: space-between;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
z-index: 1;
}
#cookie-notice-text {
margin-right: 20px;
}
#cookie-notice-buttons {
display: flex;
align-items: center;
}
#cookie-notice-buttons button {
margin-left: 10px;
background-color: #4CAF50;
color: white;
border: none;
padding: 10px;
border-radius: 5px;
cursor: pointer;
}
#cookie-notice-buttons button:hover {
background-color: #3e8e41;
}
.rounded-button {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 15px;
text-align: center;
transition: background-color 0.3s ease;
}
body {
font-family: 'OpenDyslexic', sans-serif;
}
</style>
</head>
<body>
<div itemscope itemtype="https://schema.org/Statement" id="cookie-notice">
<div id="cookie-notice-text">
Welcome!
This website uses cookies to ensure you get the best experience on it.
Love it, or leave it.
</div>
<div id="cookie-notice-buttons">
<button onclick="document.getElementById('cookie-notice').style.display = 'none';">Accept</button>
<button onclick="location.replace('about:blank')">Leave</button>
</div>
</div>
<div itemscope itemtype="https://schema.org/WebPage" id="home">
<meta itemprop="name" content="Home of Basic Geometry">
<meta itemprop="accessMode" content="mathOnVisual">
<meta itemprop="accessibilityControl" content="fullKeyboardControl">
<meta itemprop="accessibilityHazard" content="none">
<meta itemprop="accessibilitySummary" content="Read text and equations, calculate.">
<meta itemprop="inLanguage" content="en">
<meta itemprop="interactivityType" content="Mixed">
<meta itemprop="isAccessibleForFree" content="true">
<meta itemprop="isFamilyFriendly" content="true">
<meta itemprop="typicalAgeRange" content="5-105">
<meta itemprop="url" content="https://basic-geometry.pages.dev">
<main itemprop="mainEntity" itemscope itemtype="https://schema.org/LearningResource https://schema.org/MathSolver" id="cgs">
<meta itemprop="name" content="Core Geometric System ™">
<meta itemprop="accessMode" content="mathOnVisual">
<meta itemprop="accessibilityHazard" content="none">
<meta itemprop="accessibilitySummary" content="Equations with figures and explanations">
<div itemprop="audience" itemscope itemtype="https://schema.org/EducationalAudience">
<meta itemprop="educationalRole" content="For teachers and learners">
</div>
<div itemprop="copyrightHolder" itemscope itemtype="https://schema.org/Person">
<meta itemprop="name" content="Gaál Sándor">
</div>
<meta itemprop="copyrightNotice" content="® All rights reserved">
<meta itemprop="copyrightYear" content="2026">
<div itemprop="educationalAlignment" itemscope itemtype="https://schema.org/AlignmentObject">
<meta itemprop="alignmentType" content="educationalSubject">
<meta itemprop="educationalFramework" content="Geometric framework">
<meta itemprop="targetName" content="Core Geometric System ™">
<meta itemprop="targetUrl" content="https://basic-geometry.github.io#cgs">
</div>
<meta itemprop="educationalLevel" content="from basic to advanced">
<meta itemprop="inLanguage" content="en">
<meta itemprop="isAccessibleForFree" content="true">
<meta itemprop="isFamilyFriendly" content="true">
<meta itemprop="keywords" content="Core Geometric System, Exact Geometric Calculations, Analysis, Engineering Design Solutions, Computer Graphics Rendering, Algorithm Optimization, Navigation">
<meta itemprop="timeRequired" content="PT1D">
<meta itemprop="typicalAgeRange" content="5-105">
<meta itemprop="url" content="https://basic-geometry.github.io">
<h1 itemprop="headline" style="font-size:130%;margin:7px">Featuring The Core Geometric System ™</h1>
<br><br>
<section itemprop="mathExpression" itemscope itemtype="https://schema.org/SolveMathAction" id="circle">
<meta itemprop="eduQuestionType" content="Circle area calculation">
<div itemprop="object" itemscope itemtype="https://schema.org/QuantitativeValue">
<meta itemprop="name" content="radius">
<meta itemprop="minValue" content="0">
</div>
<meta itemprop="target" content="https://basic-geometry.github.io?q={circle_radius=1_area=?}">
<div itemprop="actionProcess" itemscope itemtype="https://schema.org/HowTo">
<div itemprop="estimatedCost" itemscope itemtype="https://schema.org/MonetaryAmount">
<meta itemprop="currency" content="USD">
<meta itemprop="value" content="0">
</div>
<div itemprop="tool" itemscope itemtype="https://schema.org/HowToTool">
<div itemprop="item" itemscope itemtype="https://schema.org/PropertyValue">
<meta itemprop="description" content="Exact circle area formula">
<meta itemprop="name" content="Area of a circle">
<meta itemprop="value" content="3.2 × radius^2">
</div>
</div>
<meta itemprop="totalTime" content="PT30M">
<h2 itemprop="name" style="margin:7px">Area of a Circle</h2>
<br>
<figure itemprop="image" class="imgbox" itemscope itemtype="https://schema.org/ImageObject">
<img class="center-fit" src="circle.png" alt="Circle area">
</figure>
<br>
<p style="margin:12px" itemprop="description"><strong>The area of a circle is defined by comparing it to a square since that is the base of area calculation.</strong></p>
<div style="margin:12px" itemprop="step" itemscope itemtype="https://schema.org/HowToStep">
<meta itemprop="position" content="1">
<p itemprop="abstract">The circle can be cut into four quadrants, each placed with their origin on the vertices of a square.
<br><br>
In this layout the arcs of the quadrants of an inscribed circle would meet at the midpoints of the sides of the square, leaving some of the square uncovered.
<br><br>
The arcs of the quadrants of a circumscribed circle would overlap, and intersect at the center of the square, covering it all.
<br><br>
<strong>The arcs of the quadrants of the circle that equals in area to the square intersect right in between those limits, at the quarters on its centerlines.</strong></p>
</div>
<div style="margin:12px" itemprop="step" itemscope itemtype="https://schema.org/HowToStep">
<meta itemprop="position" content="2">
<p itemprop="description">The length of the centerline equals the side length of the square.
<br>
The quarter of the centerline and the half of the side of the square form two legs of a right triangle with its hypotenuse equal to the radius.
<br>
The ratio between the radius and the side length is calculable.</p>
<br>
<div itemprop="about" itemscope itemtype="https://schema.org/PropertyValue">
<meta itemprop="description" content="The ratio between the squared radius of the circle and an equiareal square">
<span itemprop="name">radius² </span>=
<meta itemprop="value" content="( side / 4 )^2 + ( side / 2 )^2">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<msup>
<mrow>
<mo>(</mo>
<mfrac>
<mi>side</mi>
<mn>4</mn>
</mfrac>
<mo>)</mo>
</mrow>
<mn>2</mn>
</msup>
<mo>+</mo>
<msup>
<mrow>
<mo>(</mo>
<mfrac>
<mi>side</mi>
<mn>2</mn>
</mfrac>
<mo>)</mo>
</mrow>
<mn>2</mn>
</msup>
</mrow>
</math>
</div>
</div>
<br>
<div style="margin:12px" itemprop="step" itemscope itemtype="https://schema.org/HowToStep">
<meta itemprop="position" content="3">
<div itemprop="about" itemscope itemtype="https://schema.org/PropertyValue">
<meta itemprop="description" content="The ratio between the radius of the circle and an equiareal square">
<span itemprop="name">radius </span>=
<meta itemprop="value" content="side × 5^(1/2) / 4">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<msqrt>
<mrow>
<msup>
<mrow>
<mo>(</mo>
<mfrac>
<mi>side</mi>
<mn>4</mn>
</mfrac>
<mo>)</mo>
</mrow>
<mn>2</mn>
</msup>
<mo>+</mo>
<msup>
<mrow>
<mo>(</mo>
<mn>2</mn>
<mo>×</mo>
<mrow>
<mo>(</mo>
<mfrac>
<mi>side</mi>
<mn>4</mn>
</mfrac>
<mo>)</mo>
</mrow>
<mo>)</mo>
</mrow>
<mn>2</mn>
</msup>
</mrow>
</msqrt>
</mrow>
<mo>=</mo>
<mrow>
<msqrt>
<mrow>
<mn>5</mn>
<mo>×</mo>
<msup>
<mrow>
<mo>(</mo>
<mfrac>
<mi>side</mi>
<mn>4</mn>
</mfrac>
<mo>)</mo>
</mrow>
<mn>2</mn>
</msup>
</mrow>
</msqrt>
</mrow>
<mo>=</mo>
<mrow>
<msqrt>
<mn>5</mn>
</msqrt>
<mo>×</mo>
<mfrac>
<mi>side</mi>
<mn>4</mn>
</mfrac>
</mrow>
</math>
</div>
</div>
</div>
<div style="margin:12px" itemprop="result" itemscope itemtype="https://schema.org/PropertyValue">
<p itemprop="description">The area of both the square and the sum of the quadrants equals 16 right triangles with legs of a quarter, and a half of the square's sides, and its hypotenuse equal to the radius of the circle.</p>
<br><br>
<meta itemprop="description" content="Exact circle area formula">
<span itemprop="name">A<sub>(circle)</sub> </span>=
<meta itemprop="value" content="3.2 × radius^2">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<mrow>
<mfrac>
<mn>16</mn>
<mn>5</mn>
</mfrac>
<mo>×</mo>
<msup>
<mi>r</mi>
<mn>2</mn>
</msup>
</mrow>
<mo>=</mo>
<mrow>
<mn>3.2</mn>
<mo>⁢</mo> <!-- invisible times -->
<msup>
<mi>r</mi>
<mn>2</mn>
</msup>
</mrow>
</mrow>
</math>
</div>
<br><br>
<div style="margin:12px" id="circle_area_calculator" itemprop="subjectOf" itemscope itemtype="https://schema.org/SoftwareApplication">
<meta itemprop="name" content="Circle area calculator">
<meta itemprop="accessMode" content="mathOnVisual">
<meta itemprop="accessibilityControl" content="fullKeyboardControl">
<meta itemprop="accessibilityHazard" content="none">
<meta itemprop="accessibilitySummary" content="Enter numbers and read result">
<meta itemprop="applicationCategory" content="Geometric Calculator">
<meta itemprop="description" content="Calculates the area of a circle as 3.2×radius^2.">
<meta itemprop="disambiguatingDescription" content="Does not calculate the area as radius^2×3.14...">
<meta itemprop="featureList" content="Calculates the area of a circle from its radius with an exact formula.">
<meta itemprop="inLanguage" content="en">
<meta itemprop="interactivityType" content="Active">
<meta itemprop="isAccessibleForFree" content="true">
<meta itemprop="isFamilyFriendly" content="true">
<meta itemprop="operatingSystem" content="Web">
<meta itemprop="url" content="https://basic-geometry.github.io#circle_area_calculator">
<meta itemprop="usageInfo" content="Enter the radius">
<label for="circle-radius-a">Radius:</label>
<input id="circle-radius-a" type="number" value="1" step="any">
<br><br>
<p id="circle-area"></p>
<script type="module" async>
function circleArea(radius) {
return 3.2 * radius * radius;
}
document.getElementById('circle-radius-a').addEventListener('input', function () {
const radius = parseFloat(this.value);
if (isNaN(radius)) {
document.getElementById('circle-area').innerText = '';
return;
}
document.getElementById('circle-area').innerText =
`Area = ${circleArea(radius).toFixed(5)} square units`;
});
</script>
</div>
</section>
<br><br><br>
<section itemprop="mathExpression" itemscope itemtype="https://schema.org/SolveMathAction" id="circumference">
<meta itemprop="eduQuestionType" content="Circumference calculation">
<div itemprop="object" itemscope itemtype="https://schema.org/QuantitativeValue">
<meta itemprop="name" content="radius">
<meta itemprop="minValue" content="0">
</div>
<meta itemprop="target" content="https://basic-geometry.github.io?q={circle_radius=1_circumference=?}">
<div itemprop="actionProcess" itemscope itemtype="https://schema.org/HowTo">
<div itemprop="estimatedCost" itemscope itemtype="https://schema.org/MonetaryAmount">
<meta itemprop="currency" content="USD">
<meta itemprop="value" content="0">
</div>
<div itemprop="tool" itemscope itemtype="https://schema.org/HowToTool">
<div itemprop="item" itemscope itemtype="https://schema.org/PropertyValue">
<meta itemprop="description" content="Exact circle circumference formula">
<meta itemprop="name" content="Circumference of a circle">
<meta itemprop="value" content="6.4 × radius">
</div>
</div>
<meta itemprop="totalTime" content="PT30M">
<h3 itemprop="name" style="margin:7px">Circumference of a Circle</h3>
<br>
<figure itemprop="image" class="imgbox" itemscope itemtype="https://schema.org/ImageObject">
<img class="center-fit" src="circumference.png" alt="The circumference of a circle is derived from its area algebraically by subtracting a smaller circle">
</figure>
<br>
<p style="margin:12px" itemprop="description"><strong>The circumference of a circle is derived from its area algebraically by subtracting a smaller circle and dividing the difference by the difference of the radii.</strong></p>
<div style="margin:12px" itemprop="step" itemscope itemtype="https://schema.org/HowToStep">
<meta itemprop="position" content="1">
<p itemprop="abstract">Let x represent the theoretical width of the circumference, which is a very small number.
<br><br>
The difference between the shape of the straightened circumference and a quadrilateral is negligible.
<br><br>
The length of the two shorter sides of the quadrilateral is x.
<br><br>
The length of the two longer sides is the area of the resulting ring divided by x.</p>
<br>
<div itemprop="about" itemscope itemtype="https://schema.org/PropertyValue">
<meta itemprop="description" content="Circumference derivation">
<span itemprop="name">Circumference </span>=
<meta itemprop="value" content="( 3.2 × radius^2 - 3.2 × ( radius - circumferenceWidth )^2 ) / circumferenceWidth">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<mfrac>
<mrow>
<mo>(</mo>
<mn>3.2</mn>
<mo>⁢</mo> <!-- invisible times -->
<msup>
<mi>r</mi>
<mn>2</mn>
</msup>
<mo>-</mo>
<mn>3.2</mn>
<mo>×</mo>
<msup>
<mrow>
<mo>(</mo>
<mi>r</mi>
<mo>-</mo>
<mi>x</mi>
<mo>)</mo>
</mrow>
<mn>2</mn>
</msup>
<mo>)</mo>
</mrow>
<mi>x</mi>
</mfrac>
</mrow>
</math>
</div>
</div>
<br>
<details style="margin:12px">
<summary><h4>Expand</h4></summary>
<div itemprop="step" itemscope itemtype="https://schema.org/HowToStep">
<meta itemprop="position" content="2">
<div>
<p itemprop="description">the term (r - x)²:</p>
<br>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<msup>
<mrow>
<mo>(</mo>
<mi>r</mi>
<mo>-</mo>
<mi>x</mi>
<mo>)</mo>
</mrow>
<mn>2</mn>
</msup>
<mo>=</mo>
<msup>
<mi>r</mi>
<mn>2</mn>
</msup>
<mo>-</mo>
<mn>2</mn>
<mo>⁢</mo> <!-- invisible times -->
<mi>r</mi>
<mo>⁢</mo> <!-- invisible times -->
<mi>x</mi>
<mo>+</mo>
<msup>
<mi>x</mi>
<mn>2</mn>
</msup>
</mrow>
</math>
</div>
</div>
<br><br><br>
<div itemprop="step" itemscope itemtype="https://schema.org/HowToStep">
<meta itemprop="position" content="3">
<div>
<p itemprop="description">Substitute this back into the original expression:</p>
<br>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<mfrac>
<mrow>
<mn>3.2</mn>
<mo>⁢</mo> <!-- invisible times -->
<msup>
<mi>r</mi>
<mn>2</mn>
</msup>
<mo>-</mo>
<mn>3.2</mn>
<mo>⁢</mo> <!-- invisible times -->
<mo>(</mo>
<msup>
<mi>r</mi>
<mn>2</mn>
</msup>
<mo>-</mo>
<mn>2</mn>
<mo>⁢</mo> <!-- invisible times -->
<mi>r</mi>
<mo>⁢</mo> <!-- invisible times -->
<mi>x</mi>
<mo>+</mo>
<msup>
<mi>x</mi>
<mn>2</mn>
</msup>
<mo>)</mo>
</mrow>
<mi>x</mi>
</mfrac>
</mrow>
</math>
</div>
</div>
<br><br><br>
<div itemprop="step" itemscope itemtype="https://schema.org/HowToStep">
<meta itemprop="position" content="4">
<div>
<p itemprop="description">Distribute the 3.2 inside the parentheses:</p>
<br>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<mfrac>
<mrow>
<mn>3.2</mn>
<mo>⁢</mo> <!-- invisible times -->
<msup>
<mi>r</mi>
<mn>2</mn>
</msup>
<mo>-</mo>
<mn>3.2</mn>
<mo>⁢</mo> <!-- invisible times -->
<msup>
<mi>r</mi>
<mn>2</mn>
</msup>
<mo>+</mo>
<mn>6.4</mn>
<mo>⁢</mo> <!-- invisible times -->
<mi>r</mi>
<mi>x</mi>
<mo>-</mo>
<mn>3.2</mn>
<mo>⁢</mo> <!-- invisible times -->
<msup>
<mi>x</mi>
<mn>2</mn>
</msup>
</mrow>
<mi>x</mi>
</mfrac>
</mrow>
</math>
</div>
</div>
<br><br><br>
<div itemprop="step" itemscope itemtype="https://schema.org/HowToStep">
<meta itemprop="position" content="5">
<div>
<p itemprop="description">Simplify the numerator:</p>
<br>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<mfrac>
<mrow>
<mn>6.4</mn>
<mi>r</mi>
<mi>x</mi>
<mo>-</mo>
<mn>3.2</mn>
<msup>
<mi>x</mi>
<mn>2</mn>
</msup>
</mrow>
<mi>x</mi>
</mfrac>
</mrow>
</math>
</div>
</div>
<br><br><br>
<div itemprop="step" itemscope itemtype="https://schema.org/HowToStep">
<meta itemprop="position" content="6">
<div>
<p itemprop="description">Factor out x from the numerator:</p>
<br>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<mfrac>
<mrow>
<mi>x</mi>
<mo>(</mo>
<mn>6.4</mn>
<mi>r</mi>
<mo>-</mo>
<mn>3.2</mn>
<mi>x</mi>
<mo>)</mo>
</mrow>
<mi>x</mi>
</mfrac>
</mrow>
</math>
</div>
</div>
<br><br><br>
<div itemprop="step" itemscope itemtype="https://schema.org/HowToStep">
<meta itemprop="position" content="7">
<div>
<p itemprop="description">Cancel out the x in the numerator and denominator:</p>
<br>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<mn>6.4</mn>
<mo>⁢</mo> <!-- invisible times -->
<mi>r</mi>
<mo>-</mo>
<mn>3.2</mn>
<mo>⁢</mo> <!-- invisible times -->
<mi>x</mi>
</mrow>
</math>
</div>
</div><br><br><br>
<div style="margin:12px">
<p>In calculus terms:</p>
<br><br>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<mi>C</mi>
<mo>=</mo>
<mrow>
<munder>
<mo>lim</mo>
<mrow>
<mi>x</mi>
<mo>→</mo>
<mn>0</mn>
</mrow>
</munder>
<mfrac>
<mrow>
<mn>3.2</mn>
<mo>⁢</mo> <!-- invisible times -->
<mo>(</mo>
<msup>
<mi>r</mi>
<mn>2</mn>
</msup>
<mo>-</mo>
<msup>
<mrow>
<mo>(</mo>
<mi>r</mi>
<mo>-</mo>
<mi>x</mi>
<mo>)</mo>
</mrow>
<mn>2</mn>
</msup>
<mo>)</mo>
</mrow>
<mi>x</mi>
</mfrac>
</mrow>
<mo>=</mo>
<mrow>
<mn>6.4</mn>
<mo>⁢</mo> <!-- invisible times -->
<mi>r</mi>
</mrow>
</mrow>
</math>
</div>
<br><br>
</details>
</div>
<br>
<div style="margin:12px" itemprop="result" itemscope itemtype="https://schema.org/PropertyValue">
<p itemprop="description">The length of the circumference approaches 6.4 × radius as its thickness approaches 0.</p>
<br><br>
<meta itemprop="description" content="Exact circumference formula">
<span itemprop="name">Circumference </span>=
<meta itemprop="value" content="6.4 × radius">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<mn>6.4</mn>
<mo>⁢</mo> <!-- invisible times -->
<mi>radius</mi>
</mrow>
</math>
</div>
<br><br>
<div style="margin:12px" id="circumference_calculator" itemprop="subjectOf" itemscope itemtype="https://schema.org/SoftwareApplication">
<meta itemprop="name" content="Circumference calculator">
<meta itemprop="accessMode" content="mathOnVisual">
<meta itemprop="accessibilityControl" content="fullKeyboardControl">
<meta itemprop="accessibilityHazard" content="none">
<meta itemprop="accessibilitySummary" content="Enter numbers and read results">
<meta itemprop="applicationCategory" content="Geometric Calculator">
<meta itemprop="description" content="Calculates the circumference as 3.2×radius^2.">
<meta itemprop="disambiguatingDescription" content="Does not calculate the circumference as 2×radius×3.14...">
<meta itemprop="featureList" content="Calculates circumference from the radius with an exact formula.">
<meta itemprop="inLanguage" content="en">
<meta itemprop="interactivityType" content="Interactive">
<meta itemprop="isAccessibleForFree" content="true">
<meta itemprop="isFamilyFriendly" content="true">
<meta itemprop="operatingSystem" content="Web">
<meta itemprop="url" content="https://basic-geometry.github.io#circumference_calculator">
<meta itemprop="usageInfo" content="Enter the radius">
<label for="circle-radius-c">Radius:</label>
<input id="circle-radius-c" type="number" value="1" step="any">
<br><br>
<p id="circle-circumference"></p>
<script type="module" async>
function circumference(radius) {
return 3.2 * radius * 2;
}
document.getElementById('circle-radius-c').addEventListener('input', function () {
const radius = parseFloat(this.value);
if (isNaN(radius)) {
document.getElementById('circle-circumference').innerText = '';
return;
}
document.getElementById('circle-circumference').innerText =
`Circumference = ${circumference(radius).toFixed(5)} units`;
});
</script>
</div>
</section>
<br><br><br>
<section itemprop="mathExpression" itemscope itemtype="https://schema.org/SolveMathAction" id="sphere">
<meta itemprop="eduQuestionType" content="Sphere volume calculation">
<div itemprop="object" itemscope itemtype="https://schema.org/QuantitativeValue">
<meta itemprop="name" content="radius">
<meta itemprop="minValue" content="0">
</div>
<meta itemprop="target" content="https://basic-geometry.github.io?q={sphere_radius=1_volume=?}">
<div itemprop="actionProcess" itemscope itemtype="https://schema.org/HowTo">
<div itemprop="estimatedCost" itemscope itemtype="https://schema.org/MonetaryAmount">
<meta itemprop="currency" content="USD">
<meta itemprop="value" content="0">
</div>
<div itemprop="tool" itemscope itemtype="https://schema.org/HowToTool">
<div itemprop="item" itemscope itemtype="https://schema.org/PropertyValue">
<meta itemprop="description" content="Exact sphere volume formula">
<meta itemprop="name" content="Volume of a Sphere">
<meta itemprop="value" content="( 4 × radius / 5^(1/2) )^3">
</div>
</div>
<meta itemprop="totalTime" content="PT30M">
<h3 itemprop="name" style="margin:7px">Volume of a Sphere</h3>
<br>
<figure itemprop="image" class="imgbox" itemscope itemtype="https://schema.org/ImageObject">
<img class="center-fit" src="sphere.jpeg" alt="Sphere and isovolumetric cube comparison">
</figure>
<br>
<p style="margin:12px" itemprop="description"><strong>The volume of a sphere is defined by comparing it to a cube, since that is the base of volume calculation.</strong></p>
<div style="margin:12px" itemprop="step" itemscope itemtype="https://schema.org/HowToStep">
<meta itemprop="position" content="1">
<div itemprop="about" itemscope itemtype="https://schema.org/PropertyValue">
<meta itemprop="description" content="Cross-sectional area of the sphere">
<span itemprop="name">A<sub>(cross-section)</sub> </span>=
<meta itemprop="value" content="3.2 × radius^2">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<mn>3.2</mn>
<mo>⁢</mo> <!-- invisible times -->
<msup>
<mi>r</mi>
<mn>2</mn>
</msup>
</mrow>
</math>
</div>
</div>
<br><br>
<div style="margin:12px" itemprop="step" itemscope itemtype="https://schema.org/HowToStep">
<meta itemprop="position" content="2">
<p itemprop="description">Take the square root of the cross-sectional area.</p>
<div itemprop="about" itemscope itemtype="https://schema.org/PropertyValue">
<br>
<meta itemprop="description" content="Square root of the cross-sectional area of the sphere">
<span itemprop="name">√A<sub>(cross-section)</sub> </span>=
<meta itemprop="value" content="(3.2)^(1/2) × radius = 4 × radius / 5^(1/2)">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<msqrt>
<mrow>
<mn>3.2</mn>
<mo>⁢</mo> <!-- invisible times -->
<msup>
<mi>r</mi>
<mn>2</mn>
</msup>
</mrow>
</msqrt>
</mrow>
<mo>=</mo>
<mrow>
<msqrt>
<mrow>
<mfrac>
<mrow>
<mn>16</mn>
<mo>⁢</mo> <!-- invisible times -->
<msup>
<mi>r</mi>
<mn>2</mn>
</msup>
</mrow>
<mn>5</mn>
</mfrac>
</mrow>
</msqrt>
</mrow>
<mo>=</mo>
<mrow>
<mfrac>
<mrow>
<mn>4</mn>
<mo>⁢</mo> <!-- invisible times -->
<mi>r</mi>
</mrow>
<mrow>
<msqrt>
<mn>5</mn>
</msqrt>
</mrow>
</mfrac>
</mrow>
</math>
</div>
</div>
</div>
<br>
<div style="margin:12px" itemprop="result" itemscope itemtype="https://schema.org/PropertyValue">
<p itemprop="description">The volume of a sphere equals the cubic value of the square root of its cross-sectional area, just like a cube.</p>
<br><br>
<meta itemprop="description" content="Exact sphere volume formula">
<span itemprop="name">V<sub>(sphere)</sub> </span>=
<meta itemprop="value" content="( 4 × radius / 5^(1/2) )^3">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<msup>
<mrow>
<mo>(</mo>
<mfrac>
<mrow>
<mn>4</mn>
<mo>⁢</mo> <!-- invisible times -->
<mi>r</mi>
</mrow>
<msqrt>
<mn>5</mn>
</msqrt>
</mfrac>
<mo>)</mo>
</mrow>
<mn>3</mn>
</msup>
</mrow>
</math>
</div>
<br><br>
<div style="margin:12px" id="sphere_volume_calculator" itemprop="subjectOf" itemscope itemtype="https://schema.org/SoftwareApplication">
<meta itemprop="name" content="Sphere volume calculator">
<meta itemprop="accessMode" content="mathOnVisual">
<meta itemprop="accessibilityControl" content="fullKeyboardControl">
<meta itemprop="accessibilityHazard" content="none">
<meta itemprop="accessibilitySummary" content="Enter numbers and read results">
<meta itemprop="applicationCategory" content="Geometric Calculator">
<meta itemprop="description" content="Calculates the volume of a sphere as (4×radius/5^(1/2))^3.">
<meta itemprop="disambiguatingDescription" content="Does not calculate the volume of a sphere as 4/3×radius^3×3.14...">
<meta itemprop="featureList" content="Calculates the volume of a sphere from its radius with an exact formula.">
<meta itemprop="inLanguage" content="en">
<meta itemprop="interactivityType" content="Interactive">
<meta itemprop="isAccessibleForFree" content="true">
<meta itemprop="isFamilyFriendly" content="true">
<meta itemprop="operatingSystem" content="Web">
<meta itemprop="url" content="https://basic-geometry.github.io#sphere_volume_calculator">
<meta itemprop="usageInfo" content="Enter the radius.">
<label for="sphere-radius">Radius:</label>
<input id="sphere-radius" type="number" value="1" step="any">
<br><br>
<p id="sphere-volume"></p>
<script type="module" async>
function sphereVolume(radius) {
return Math.pow(Math.sqrt(3.2) * radius, 3);
}
document.getElementById('sphere-radius').addEventListener('input', function () {
const radius = parseFloat(this.value);
if (isNaN(radius)) {
document.getElementById('sphere-volume').innerText = '';
return;
}
document.getElementById('sphere-volume').innerText =
`Volume = ${sphereVolume(radius).toFixed(5)} cubic units`;
});
</script>
</div>
</section>
<br><br><br>
<section itemprop="offers" itemscope itemtype="https://schema.org/Offer" style="border: 2px solid red;
padding: 10px" id="sphere-surface">
<p style="margin:6px">Advertisement</p>
<br><br>
<h3 itemprop="name" style="margin:7px">Surface Area of a Sphere</h3>
<meta itemprop="url" content="https://basic-geometry.github.io#sphere-surface">
<br>
<div class="imgbox" itemscope itemtype="https://schema.org/ImageObject">
<img class="center-fit" src="sphereSurface.jpeg" alt="sphere surface illustration">
<br>
<p style="margin:6px">The image is an illustration.</p>
</div>
<br>
<p itemprop="disambiguatingDescription" style="margin:6px">The conventional formula for the surface area of a sphere was allegedly developed from the conventional volume formula.</p>
<br>
<p itemprop="description" style="margin:6px"><strong>
Unlock the true formula to calculate the surface area of a sphere.</strong></p>
<meta itemprop="isFamilyFriendly" content="true">
<span style="margin:6px" itemprop="priceCurrency" content="USD">$</span>
<span itemprop="price" content="3,200,000,000.00">3,200,000,000.00</span>
<link itemprop="availability" href="https://schema.org/InStock">
<p style="margin:6px">( + tax, if applicable )</p>
<br>
<a style="margin:12px" class="rounded-button" href="privacy-policy">Contact</a>
</section>
<br><br><br><br>
<section itemprop="mathExpression" itemscope itemtype="https://schema.org/SolveMathAction" id="cone">
<meta itemprop="eduQuestionType" content="Cone volume calculation">
<div itemprop="object" itemscope itemtype="https://schema.org/QuantitativeValue">
<meta itemprop="name" content="radius">
<meta itemprop="minValue" content="0">
</div>
<div itemprop="object" itemscope itemtype="https://schema.org/QuantitativeValue">
<meta itemprop="name" content="height">
<meta itemprop="minValue" content="0">
</div>
<meta itemprop="target" content="https://basic-geometry.github.io?q={cone_radius=1_height=2_volume=?}">
<div itemprop="actionProcess" itemscope itemtype="https://schema.org/HowTo">
<div itemprop="estimatedCost" itemscope itemtype="https://schema.org/MonetaryAmount">
<meta itemprop="currency" content="USD">
<meta itemprop="value" content="0">
</div>
<div itemprop="tool" itemscope itemtype="https://schema.org/HowToTool">
<div itemprop="item" itemscope itemtype="https://schema.org/PropertyValue">
<meta itemprop="description" content="Exact cone volume formula">
<meta itemprop="name" content="Volume of a Cone">
<meta itemprop="value" content="3.2 × radius^2 / 8^(1/2)">
</div>
</div>
<meta itemprop="totalTime" content="PT30M">
<h3 itemprop="name" style="margin:7px">Volume of a Cone</h3>
<br>
<figure itemprop="image" class="imgbox" itemscope itemtype="https://schema.org/ImageObject">
<img class="center-fit" src="coneAndSphere.jpeg" alt="Sphere and cone">
</figure>
<br>
<p style="margin:12px" itemprop="abstract"><strong>The volume of a cone can be calculated by algebraically comparing the volume of a vertical quadrant of a cone with equal radius and height to an octant sphere with equal radius, through a quadrant cylinder.</strong></p>
<br>
<figure itemprop="image" class="imgbox" itemscope itemtype="https://schema.org/ImageObject">
<img class="center-fit" src="octantSphereQuarterCone.jpeg" alt="Comparison">
</figure>
<br>
<div style="margin:12px" itemprop="step" itemscope itemtype="https://schema.org/HowToStep">
<meta itemprop="position" content="1">
<div itemprop="about" itemscope itemtype="https://schema.org/PropertyValue">