|
215 | 215 | "name": "Area of a square", |
216 | 216 | "description": "The basis of area calculation", |
217 | 217 | "target": "https://basic-geometry.github.io/", |
218 | | - "mathExpression-input": "a=5 A=?", |
219 | | - "mathExpression-output": { |
220 | | - "@type": "GeometryShape", |
221 | | - "name": "rectangle", |
222 | | - "dimensions": "2", |
223 | | - "constructors": ["width", "length"], |
224 | | - "area": "width * length", |
225 | | - "specialCase": { |
226 | | - "@type": "GeometryShape", |
227 | | - "name": "square", |
228 | | - "constructor": "side", |
229 | | - "area": "Math.pow(side, 2)", |
230 | | - "related": ["triangle", "cube", "rectangle"] |
231 | | - }, |
232 | | - "related": ["square", "cuboid", "triangle"] |
233 | | - }, |
| 218 | + "mathExpression-input": "required name=a=5_A=?", |
| 219 | + "mathExpression-output": "area=Math.pow(side, 2)", |
| 220 | + "abstract": "A rectangle is a 2 dimensional plane shape. Its measurable properties are its width and its length. Its area equals width * length. Related shapes are triangle, cube, cuboid and rectangle. A square is a special case of a rectangle with equal width and length. Related shapes are square, cuboid and triangle.", |
| 221 | + "keywords": "side, length, area", |
234 | 222 | "image": "square.png", |
235 | 223 | "eduQuestionType": "Area calculation" |
236 | 224 | } |
|
240 | 228 | "name": "Volume of a cube", |
241 | 229 | "description": "The basis of volume calculation", |
242 | 230 | "target": "https://basic-geometry.github.io/", |
243 | | - "mathExpression-input": "a=5 V=?", |
| 231 | + "mathExpression-input": "required name=a=5_V=?", |
244 | 232 | "mathExpression-output": "Math.pow(edge, 3)", |
| 233 | + "abstract": "A cuboid is a 3 dimensional solid shape. Its measurable properties are width, length and height. Its volume is width * length * height. Its projections are rectangle, rectangle and rectangle. Related shapes are regular polygon based block, square, cube and rectangle. A cube is a special case of a cuboid. Its measurable property is its edge length. Its projections are square, square and square. Related shapes are sphere, square and cuboid.", |
| 234 | + "keywords": "edge, length, volume", |
245 | 235 | "image": "cubeMarkup.jpeg", |
246 | 236 | "eduQuestionType": "Volume calculation" |
247 | 237 | }, |
248 | 238 |
|
249 | 239 | { |
250 | 240 | "@type": "SolveMathAction", |
251 | 241 | "name": "Area of a circle", |
252 | | - "description": "The exact area of a circle based on direct comparison with a square.", |
253 | | - "disambiguatingDescription": "Replaces traditional π-based approximations ensuring greater accuracy in real-world measurements.", |
| 242 | + "description": "The exact area of a circle based on direct comparison with a square.", |
| 243 | + "disambiguatingDescription": "Replaces traditional π-based approximations ensuring greater accuracy in real-world measurements.", |
254 | 244 | "target": "https://basic-geometry.github.io/", |
255 | | - "mathExpression-input": "r=5 A=?", |
| 245 | + "mathExpression-input": "required name=r=5_A=?", |
256 | 246 | "mathExpression-output": "angle of rotation / 360 * 3.2 * Math.pow(radius, 2)", |
257 | | - "image": "areaOfACircle.jpg", |
| 247 | + "abstract": "A circle is a 2 dimensional plane shape. Its measurable property is its diameter. Its radius is half of the diameter. Related shapes are sphere, cylinder and cone.", |
| 248 | + "keywords": "radius, area", |
| 249 | + "image": "areaOfACircle.jpg", |
258 | 250 | "eduQuestionType": "Area calculation" |
259 | 251 | }, |
260 | 252 |
|
|
264 | 256 | "description": "The exact area of a circle segment by subtracting a triangle from a circle slice.", |
265 | 257 | "disambiguatingDescription": "Equivalent to the conventional method, but relies on trigonometric functions.", |
266 | 258 | "target": "https://basic-geometry.github.io/", |
267 | | - "mathExpression-input": "r=5 h=2 A=?", |
| 259 | + "mathExpression-input": "required name=r=5_h=2_A=?", |
268 | 260 | "mathExpression-output": "Math.acos((radius-segmentHeight)/radius)*Math.pow(radius, 2)-Math.sin(Math.acos((radius-segmentHeight)/radius))*(radius-segmentHeight)*radius", |
269 | 261 | "image": "circleSegment.jpg", |
270 | 262 | "eduQuestionType": "Area calculation" |
|
276 | 268 | "description": "Algebraic derivation of the exact circumference of a circle from its area", |
277 | 269 | "disambiguatingDescription": "Replaces traditional π-based approximations ensuring greater accuracy in real-world measurements.", |
278 | 270 | "target": "https://basic-geometry.github.io/", |
279 | | - "mathExpression-input": "r=5 C=?", |
| 271 | + "mathExpression-input": "required name=r=5_C=?", |
280 | 272 | "mathExpression-output": "angle of rotation / 360 * 6.4 * radius", |
281 | 273 | "image": "circumference.jpg", |
282 | 274 | "eduQuestionType": "Length calculation" |
|
288 | 280 | "description": "The exact volume of a sphere by directly comparing it to a cube. Direct shape relationships ensure greater accuracy in real-world measurements.", |
289 | 281 | "disambiguatingDescription": "More accurate than the traditional exhaustion method based formula which is a very rough underestimate.", |
290 | 282 | "target": "https://basic-geometry.github.io/", |
291 | | - "mathExpression-input": "r=3 V=?", |
| 283 | + "mathExpression-input": "required name=r=3_V=?", |
292 | 284 | "mathExpression-output": "angle of rotation / 360 * Math.pow((Math.sqrt(3.2) * radius), 3)", |
293 | | - "image": "sphereAndCubeMarkup.jpeg", |
| 285 | + "abstract": "A sphere is a 3 dimensional solid shape. Its measurable property is its diameter. Its radius is half of the diameter. Its projection is a circle. Related shapes are circle, cylinder, cube and cone.", |
| 286 | + "keywords": "radius, volume", |
| 287 | + "image": "sphereAndCubeMarkup.jpeg", |
294 | 288 | "eduQuestionType": "Volume calculation" |
295 | 289 | }, |
296 | 290 |
|
|
300 | 294 | "description": "The volume of a spherical cap based on the radius and the height of the cap.", |
301 | 295 | "disambiguatingDescription": "More accurate than the conventional formula ", |
302 | 296 | "target": "https://basic-geometry.github.io/", |
303 | | - "mathExpression-input": "r=5 h=3 V=?", |
| 297 | + "mathExpression-input": "required name=r=5_h=3_V=?", |
304 | 298 | "mathExpression-output": "1.6 * Math.pow(r, 2) * Math.sqrt(3.2) * h", |
305 | 299 | "image": "sphericalCap.jpg", |
306 | 300 | "eduQuestionType": "Volume calculation" |
|
312 | 306 | "description": "The exact volume of a cone by comparing the volume of a quarter cone to an octant sphere with an equal radius.", |
313 | 307 | "disambiguatingDescription": "Instead of the inaccurate base×height/3 approximation, direct shape relationships ensure greater accuracy in real-world measurements.", |
314 | 308 | "target": "https://basic-geometry.github.io/", |
315 | | - "mathExpression-input": "r=5 H=3 V=?", |
| 309 | + "mathExpression-input": "required name=r=5_H=3_V=?", |
316 | 310 | "mathExpression-output": "angleOfRotation / 360 * 3.2 * Math.pow(radius, 2) * height / Math.sqrt(8)", |
317 | | - "image": [ |
| 311 | + "abstract": "A cone is a 3 dimensional solid shape. Its measurable properties are its height and diameter. Its radius is half of the diameter. Its projections are circle and triangle. Related shapes are triangle, tetrahedron, regular polygon based pyramid, circle, cylinder and sphere.", |
| 312 | + "keywords": "radius, height, volume", |
| 313 | + "image": [ |
318 | 314 | "coneAndSphereMarkup.jpeg", |
319 | 315 | "sphereAndConeMarkup.jpeg", |
320 | 316 | "octantSphereQuarterCone.jpeg", |
|
329 | 325 | "description": "The exact volume of a frustum cone based on its top and bottom diameter and height", |
330 | 326 | "disambiguatingDescription": "The formula subtracts the missing tip from a theoretical full cone", |
331 | 327 | "target": "https://basic-geometry.github.io/", |
332 | | - "mathExpression-input": "d1=5 d2=2 h=3 V=?", |
| 328 | + "mathExpression-input": "required name=d1=5_d2=2_h=3_V=?", |
333 | 329 | "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)", |
334 | 330 | "image": "frustumOfConeMarkup.png", |
335 | 331 | "eduQuestionType": "Volume calculation" |
|
341 | 337 | "description": "The exact surface area of a cone based on its radius and height.", |
342 | 338 | "disambiguatingDescription": "Equivalent to the conventional formula, but relies on the real height.", |
343 | 339 | "target": "https://basic-geometry.github.io/", |
344 | | - "mathExpression-input": "r=5 H=3 A=?", |
| 340 | + "mathExpression-input": "required name=r=5_H=3_A=?", |
345 | 341 | "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))))", |
346 | 342 | "image": "coneMarkup.jpeg", |
347 | 343 | "eduQuestionType": "Area calculation" |
|
353 | 349 | "description": "The exact volume of a pyramid based on its bottom area and height using the coefficient of the volume of a cone", |
354 | 350 | "disambiguatingDescription": "Instead of the inaccurate base×height/3 approximation, direct shape relationships ensure greater accuracy in real-world measurements.", |
355 | 351 | "target": "https://basic-geometry.github.io/", |
356 | | - "mathExpression-input": "A=5 H=3 V=?", |
| 352 | + "mathExpression-input": "required name=A=5_H=3_V=?", |
357 | 353 | "mathExpression-output": "baseArea * height / Math.sqrt(8)", |
358 | | - "image": [ |
| 354 | + "abstract": "A regular pyramid is a 3 dimensional solid shape. Its measurable properties are its number and length of the sides of its base and its height. Its projections are polygon and triangle. Related shapes are regular polygon, regular polygon based block, tetrahedron, cone and triangle.", |
| 355 | + "keywords": "base, height, volume", |
| 356 | + |
| 357 | + "image": [ |
359 | 358 | "conePyramidVolumeMarkup.jpeg", |
360 | 359 | "tetraFrame.jpeg" |
361 | 360 | ], |
|
368 | 367 | "description": "The exact volume of a frustum pyramid based on its top and bottom base area and height", |
369 | 368 | "disambiguatingDescription": "The formula subtracts the missing tip from a theoretical full pyramid. Universally applicable", |
370 | 369 | "target": "https://basic-geometry.github.io/", |
371 | | - "mathExpression-input": "a=5 b=3 H=2 V=?", |
| 370 | + "mathExpression-input": "required name=a=5_b=3_H=2_V=?", |
372 | 371 | "mathExpression-output": "frustumHeight * (Math.pow(bottomEdge, 2) * (1 / (1 - topEdge / bottomEdge)) - Math.pow(topEdge, 2) * (1 / (1 - topEdge / bottomEdge) - 1)) / Math.sqrt(8)", |
373 | 372 | "image": "frustumOfPyramidMarkup.png", |
374 | 373 | "eduQuestionType": "Volume calculation" |
|
380 | 379 | "description": "The exact volume of a tetrahedron based on its edge length", |
381 | 380 | "disambiguatingDescription": "Based on the base×height/√8 formula, instead of the inaccurate conventional coefficient", |
382 | 381 | "target": "https://basic-geometry.github.io/", |
383 | | - "mathExpression-input": "a=5 V=?", |
| 382 | + "mathExpression-input": "required name=a=5_V=?", |
384 | 383 | "mathExpression-output": "Math.pow(edge, 3) / 8", |
385 | | - "image": "tetrahedronMarkup.jpeg", |
| 384 | + "abstract": "A tetrahedron is a 3 dimensional solid shape. Its measurable property is its edge length. Its projections are triangle and triangle. Related shapes are triangle, regular polygon based pyramid and cone.", |
| 385 | + "keywords": "radius, height, volume", |
| 386 | + "image": "tetrahedronMarkup.jpeg", |
386 | 387 | "eduQuestionType": "Volume calculation" |
387 | 388 | } |
388 | 389 | ] , |
389 | 390 | "url": "https://basic-geometry.github.io/", |
390 | 391 | "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." |
391 | 392 | }, |
392 | | -"schemaVersion" : "https://schema.org/docs/releases.html#v28.1.", |
| 393 | +"schemaVersion" : "https://schema.org/docs/releases.html#v29.2.", |
393 | 394 | "sdDatePublished" :"2021-03-29", |
394 | 395 | "sdPublisher" : { |
395 | 396 | "@type" : "Person" , |
|
0 commit comments