Skip to content

Commit 76e7500

Browse files
authored
Update index.html
Markup
1 parent 60cb384 commit 76e7500

File tree

1 file changed

+79
-157
lines changed

1 file changed

+79
-157
lines changed

index.html

Lines changed: 79 additions & 157 deletions
Original file line numberDiff line numberDiff line change
@@ -196,243 +196,165 @@
196196
"name" :"Szentendre, Hungary"},
197197
"mainEntity" : {
198198
"@type": ["MathSolver", "LearningResource"],
199-
"name" : "Exact Geometry",
199+
"name" : "Core Geometric System ™",
200200
"inLanguage":"en-us",
201201
"url": "https://basic-geometry.github.io/",
202202
"usageInfo":"Calculate area and volume with enhanced accuracy using the Core Geometric System ™. This innovative framework provides a practical alternative to traditional methods, rooted in comparative geometry and scaling principles. Learn exact formulas for circles (A = 3.2r^2, C = 6.4r), spheres (V = (√(3.2)r)^3), cones, and more, with applications in engineering, computer graphics, and scientific research.",
203203
"potentialAction": [
204204

205-
{
205+
{
206206
"@type": "SolveMathAction",
207+
"name": "Area of a square",
208+
"description": "The basis of area calculation",
207209
"target": "https://basic-geometry.github.io/",
208-
"mathExpression-input": "Side length of the square",
209-
"mathExpression-output": "Area of the square",
210+
"mathExpression-input": "a=5 A=?",
211+
"mathExpression-output": "Math.pow(side, 2)",
210212
"image": "square.png",
211-
"eduQuestionType": "Area calculation",
212-
"name": "Calculating the area of a square",
213-
"additionalProperty": {
214-
"@type": "PropertyValue",
215-
"name": "Formula",
216-
"value": "Math.pow(side, 2)"
217-
}
213+
"eduQuestionType": "Area calculation"
218214
},
219215

220216
{
221217
"@type": "SolveMathAction",
218+
"name": "Volume of a cube",
219+
"description": "The basis of volume calculation",
222220
"target": "https://basic-geometry.github.io/",
223-
"mathExpression-input": "Edge length of the cube",
224-
"mathExpression-output": "Volume of the cube",
221+
"mathExpression-input": "a=5 V=?",
222+
"mathExpression-output": "Math.pow(edge, 3)",
225223
"image": "cubeMarkup.jpeg",
226-
"eduQuestionType": "Volume calculation",
227-
"name": "Calculating the volume of a cube",
228-
"additionalProperty": {
229-
"@type": "PropertyValue",
230-
"name": "Formula",
231-
"value": "Math.pow(edge, 3)"
232-
}
224+
"eduQuestionType": "Volume calculation"
233225
},
234226

235227
{
236228
"@type": "SolveMathAction",
229+
"name": "Area of a circle",
230+
"description": "Calculates the exact area of a circle using a refined approach that replaces traditional π-based approximations. This method is based on direct shape relationships, ensuring greater accuracy in real-world measurements.",
237231
"target": "https://basic-geometry.github.io/",
238-
"mathExpression-input": "The radius of the circle, and optionally the angle of rotation in case of a circle slice",
239-
"mathExpression-output":
240-
"The area of the circle",
232+
"mathExpression-input": "r=5 A=?",
233+
"mathExpression-output": "angle of rotation / 360 * 3.2 * Math.pow(radius, 2)",
241234
"image": "areaOfACircle.jpg",
242-
"eduQuestionType": "Area calculation",
243-
"name": "Calculating the area of a circle",
244-
"additionalProperty": {
245-
"@type": "PropertyValue",
246-
"name": "Formula",
247-
"value": "angleOfRotation / 360 * 3.2 * Math.pow(radius, 2)"
248-
}
249-
},
250-
235+
"eduQuestionType": "Area calculation"
236+
},
237+
251238
{
252239
"@type": "SolveMathAction",
240+
"name": "Area of a circle segment",
241+
"description": "Calculates the area of a circle segment based on its radius and the height of the segment",
253242
"target": "https://basic-geometry.github.io/",
254-
"mathExpression-input": "The radius of the circle, optionally the angle of rotation in case of a section",
255-
"mathExpression-output": "The circumference of the circle",
256-
"image": "circumference.jpg",
257-
"eduQuestionType": "Length calculation",
258-
"name": "Calculating the circumference of a circle",
259-
"additionalProperty": {
260-
"@type": "PropertyValue",
261-
"name": "Formula",
262-
"value": "angleOfRotation / 360 * 6.4 * radius"
263-
}
243+
"mathExpression-input": "r=5 h=2 A=?",
244+
"mathExpression-output": "Math.acos((radius-segmentHeight)/radius)*Math.pow(radius, 2)-Math.sin(Math.acos((radius-segmentHeight)/radius))*(radius-segmentHeight)*radius",
245+
"image": "circleSegment.jpg",
246+
"eduQuestionType": "Area calculation"
264247
},
265248

266249
{
267250
"@type": "SolveMathAction",
268-
"target": "https://basic-geometry.github.io/",
269-
"mathExpression-input": "The height of the segment, and the radius of the full circle",
270-
"mathExpression-output": "The area of the circle segment",
271-
"image": "circleSegment.jpg",
272-
"eduQuestionType": "Area calculation",
273-
"name": "Calculating the area of a circle segment",
274-
"additionalProperty": {
275-
"@type": "PropertyValue",
276-
"name": "Formula",
277-
"value": "Math.acos((radius-segmentHeight)/radius)*Math.pow(radius, 2)-Math.sin(Math.acos((radius-segmentHeight)/radius))*(radius-segmentHeight)*radius"
278-
}
279-
},
280-
251+
"name": "Circumference of a circle",
252+
"description": "Calculates the exact circumference of a circle using a refined approach that replaces traditional π-based approximations. This method is based on direct shape relationships, ensuring greater accuracy in real-world measurements.",
253+
"target": "https://basic-geometry.github.io/",
254+
"mathExpression-input": "r=5 C=?",
255+
"mathExpression-output": "angle of rotation / 360 * 6.4 * radius",
256+
"image": "circumference.jpg",
257+
"eduQuestionType": "Length calculation"
258+
},
259+
281260
{
282261
"@type": "SolveMathAction",
262+
"name": "Volume of a sphere",
263+
"description": "Calculates the exact volume of a sphere by directly comparing it to a cube. This method is based on direct shape relationships, ensuring greater accuracy in real-world measurements.",
283264
"target": "https://basic-geometry.github.io/",
284-
"mathExpression-input": "The radius of the sphere, and optionally the angle of rotation in case of a sphere slice",
285-
"mathExpression-output": "The volume of the sphere",
265+
"mathExpression-input": "r=3 V=?",
266+
"mathExpression-output": "angle of rotation / 360 * Math.pow((Math.sqrt(3.2) * radius), 3)",
286267
"image": "sphereAndCubeMarkup.jpeg",
287-
"eduQuestionType": "Volume calculation",
288-
"name": "Calculating the volume of a sphere",
289-
"additionalProperty": {
290-
"@type": "PropertyValue",
291-
"name": "Formula",
292-
"value": "angleOfRotation/360*(3.2^(1/2)*radius)^3"
293-
}
268+
"eduQuestionType": "Volume calculation"
294269
},
295270

296271
{
297272
"@type": "SolveMathAction",
273+
"name": "Volume of a spherical cap",
274+
"description": "Calculates the volume of a spherical cap based on the radius of the sphere and the cap.",
298275
"target": "https://basic-geometry.github.io/",
299-
"mathExpression-input": "The radius of the bottom of the cap, and the full sphere",
300-
"mathExpression-output": "The volume of the spherical cap",
276+
"mathExpression-input": "r1=5 r2=3 V=?",
277+
"mathExpression-output": "1.6 * Math.pow(sphereSliceBottomRadius, 2) * Math.sqrt(3.2) * (1 - Math.sin(Math.acos(sphereSliceBottomRadius / sphereRadius)))",
301278
"image": "sphericalCap.jpg",
302-
"eduQuestionType": "Volume calculation",
303-
"name": "Calculating the volume of a spherical cap",
304-
"additionalProperty": {
305-
"@type": "PropertyValue",
306-
"name": "Formula",
307-
"value": "1.6 * Math.pow(sphereSliceBottomRadius, 2) * Math.sqrt(3.2) * (1 - Math.sin(Math.acos(sphereSliceBottomRadius / sphereRadius)))"
308-
}
279+
"eduQuestionType": "Volume calculation"
309280
},
310-
311-
{
312-
"@type": "SolveMathAction",
313-
"target": "https://basic-geometry.github.io/",
314-
"mathExpression-input": "The radius and the height of the cylinder",
315-
"mathExpression-output": "The volume of the cylinder",
316-
"eduQuestionType": "Volume calculation",
317-
"name": "Calculating the volume of a cylinder",
318-
"additionalProperty": {
319-
"@type": "PropertyValue",
320-
"name": "Formula",
321-
"value": "angleOfRotation / 360 * 3.2 * Math.pow(radius, 2) * height"
322-
}
323-
},
324-
325-
{
326-
"@type": "SolveMathAction",
327-
"target": "https://basic-geometry.github.io/",
328-
"mathExpression-input": "The radius and the height of the cylinder",
329-
"mathExpression-output": "The surface of the cylinder",
330-
"eduQuestionType": "Area calculation",
331-
"name": "Calculating the surface of a cylinder",
332-
"additionalProperty": {
333-
"@type": "PropertyValue",
334-
"name": "Formula",
335-
"value": "6.4 * radius * height"
336-
}
337-
},
338281

282+
339283
{
340284
"@type": "SolveMathAction",
341285
"target": "https://basic-geometry.github.io/",
342-
"mathExpression-input": "The bottom radius and the height of the cone",
343-
"mathExpression-output": "The volume of the cone",
286+
"name": "Volume of a cone",
287+
"description": "Calculates the exact volume of a cone by comparing the volume of a quarter cone to an octant of a sphere with an equal radius. This method is based on direct shape relationships, ensuring greater accuracy in real-world measurements.",
288+
"mathExpression-input": "r=5 H=3 V=?",
289+
"mathExpression-output": "angleOfRotation / 360 * 3.2 * Math.pow(radius, 2) * height / Math.sqrt(8)",
344290
"image": [
345291
"coneAndSphereMarkup.jpeg",
346292
"sphereAndConeMarkup.jpeg",
347293
"octantSphereQuarterCone.jpeg",
348294
"coneAndSphereComparison.png"
349295
],
350-
"eduQuestionType": "Volume calculation",
351-
"name": "Calculating the volume of a cone",
352-
"additionalProperty": {
353-
"@type": "PropertyValue",
354-
"name": "Formula",
355-
"value": "angleOfRotation / 360 * 3.2 * Math.pow(radius, 2) * height / Math.sqrt(8)"
356-
}
357-
},
296+
"eduQuestionType": "Volume calculation"
297+
},
358298

359299
{
360300
"@type": "SolveMathAction",
301+
"name": "Volume of a frustum cone",
302+
"description": "Calculates the exact volume of a frustum cone based on its top and bottom diameter and height",
361303
"target": "https://basic-geometry.github.io/",
362-
"mathExpression-input": "The top and the bottom diameter and the height of the cone",
363-
"mathExpression-output": "The volume of the frustum cone",
304+
"mathExpression-input": "d1=5 d2=2 h=3 V=?",
305+
"mathExpression-output": "frustumHeight * (4 / 5 * Math.pow(bottomDiameter, 2) * (1 / (1 - topDiameter / bottomDiameter)) - 4 / 5 * Math.pow(topDiameter, 2) * (1 / (1 - topDiameter / bottomDiameter) - 1)) / Math.sqrt(8)",
364306
"image": "frustumOfConeMarkup.png",
365-
"eduQuestionType": "Volume calculation",
366-
"name": "Calculating the volume of a frustum cone",
367-
"additionalProperty": {
368-
"@type": "PropertyValue",
369-
"name": "Formula",
370-
"value": "frustumHeight * (4 / 5 * Math.pow(bottomDiameter, 2) * (1 / (1 - topDiameter / bottomDiameter)) - 4 / 5 * Math.pow(topDiameter, 2) * (1 / (1 - topDiameter / bottomDiameter) - 1)) / Math.sqrt(8)"
371-
}
307+
"eduQuestionType": "Volume calculation"
372308
},
373309

374310
{
375311
"@type": "SolveMathAction",
312+
"name":"Surface area of a cone",
313+
"description": "Calculates the exact surface area of a cone based on its radius and height",
376314
"target": "https://basic-geometry.github.io/",
377-
"mathExpression-input": "The bottom radius and the height of the cone",
378-
"mathExpression-output": "The surface area of the cone",
315+
"mathExpression-input": "r=5 H=3 A=?",
316+
"mathExpression-output": "3.2 * (Math.pow(radius, 2) + (Math.pow(radius, 2) + Math.pow(height, 2)) * (radius / Math.sqrt(Math.pow(radius, 2) + Math.pow(height, 2))))",
379317
"image": "coneMarkup.jpeg",
380-
"eduQuestionType": "Area calculation",
381-
"name":"Calculating the surface of a cone",
382-
"additionalProperty": {
383-
"@type": "PropertyValue",
384-
"name": "Formula",
385-
"value": "3.2 * (Math.pow(radius, 2) + (Math.pow(radius, 2) + Math.pow(height, 2)) * (radius / Math.sqrt(Math.pow(radius, 2) + Math.pow(height, 2))))"
386-
}
318+
"eduQuestionType": "Area calculation"
387319
},
388320

389321
{
390322
"@type": "SolveMathAction",
323+
"name": "Volume of a pyramid",
324+
"description": "Calculates the exact volume of a pyramid based on the bottom area and the height of the pyramid",
391325
"target": "https://basic-geometry.github.io/",
392-
"mathExpression-input": "The bottom area and the height of the pyramid",
393-
"mathExpression-output": "The volume of the pyramid",
326+
"mathExpression-input": "A=5 H=3 V=?",
327+
"mathExpression-output": "baseArea * height / Math.sqrt(8)",
394328
"image": [
395329
"conePyramidVolumeMarkup.jpeg",
396330
"tetraFrame.jpeg"
397331
],
398-
"eduQuestionType": "Volume calculation",
399-
"name": "Calculating the volume of a pyramid",
400-
"additionalProperty": {
401-
"@type": "PropertyValue",
402-
"name": "Formula",
403-
"value": "baseArea * height / Math.sqrt(8)"
404-
}
332+
"eduQuestionType": "Volume calculation"
405333
},
406334

407335
{
408336
"@type": "SolveMathAction",
409-
"target": "https://basic-geometry.github.io/",
410-
"mathExpression-input": "The top and the bottom edge and the height of the frustum pyramid",
411-
"mathExpression-output": "The volume of the frustum pyramid",
337+
"name": "Volume of a frustum pyramid",
338+
"description": "Calculates the exact volume of a frustum pyramid based on its top and bottom edge length and height",
339+
"target": "https://basic-geometry.github.io/",
340+
"mathExpression-input": "a=5 b=3 H=2 V=?",
341+
"mathExpression-output": "frustumHeight * (Math.pow(bottomEdge, 2) * (1 / (1 - topEdge / bottomEdge)) - Math.pow(topEdge, 2) * (1 / (1 - topEdge / bottomEdge) - 1)) / Math.sqrt(8)",
412342
"image": "frustumOfPyramidMarkup.png",
413-
"eduQuestionType": "Volume calculation",
414-
"name": "Calculating the volume of a frustum pyramid",
415-
"additionalProperty": {
416-
"@type": "PropertyValue",
417-
"name": "Formula",
418-
"value": "frustumHeight * (Math.pow(bottomEdge, 2) * (1 / (1 - topEdge / bottomEdge)) - Math.pow(topEdge, 2) * (1 / (1 - topEdge / bottomEdge) - 1)) / Math.sqrt(8)"
419-
}
343+
"eduQuestionType": "Volume calculation"
420344
},
421345

422346
{
423347
"@type": "SolveMathAction",
348+
"name": "Volume of a tetrahedron",
349+
"description": "Calculates the exact volume of a tetrahedron based on its edge length",
424350
"target": "https://basic-geometry.github.io/",
425-
"mathExpression-input": "The edge length of the tetrahedron",
426-
"mathExpression-output": "The volume of the tetrahedron",
351+
"mathExpression-input": "a=5 V=?",
352+
"mathExpression-output": "Math.pow(edge, 3) / 8",
427353
"image": "tetrahedronMarkup.jpeg",
428-
"eduQuestionType": "Volume calculation",
429-
"name": "Calculating the volume of a tetrahedron",
430-
"additionalProperty": {
431-
"@type": "PropertyValue",
432-
"name": "Formula",
433-
"value": "Math.pow(edge, 3) / 8"
434-
}
354+
"eduQuestionType": "Volume calculation"
435355
}
356+
357+
436358
]
437359
},
438360
"mainEntityOfPage": {

0 commit comments

Comments
 (0)