|
94 | 94 | <meta name="twitter:title" content="Home of Basic Geometry"> |
95 | 95 | <meta name="twitter:description" content="Introducing the best-established and most accurate framework to calculate area and volume."> |
96 | 96 | <meta name="twitter:image" content="android-chrome-256x256.png"> |
97 | | -<meta name="google-site-verification" content="XuP08h4O_UbzZo81VWNHhFn5OW7elz2_cZi17lt3qvA" /> |
98 | | -<meta name="msvalidate.01" content="EA6B8354B9F3C956E862954E97EB8CD0" /> |
99 | 97 | <script type="application/ld+json" async> |
100 | 98 | { |
101 | 99 | "@context": "https://schema.org", |
|
104 | 102 | "about": { |
105 | 103 | "@type": "AboutPage", |
106 | 104 | "name": "About Basic Geometry Formulas", |
107 | | - "url": "https://basic-geometry.pages.dev/about" |
| 105 | + "url": "https://basic-geometry.github.io/about/" |
108 | 106 | }, |
109 | 107 | "alternateName": "Exact Geometry", |
110 | 108 | "accessMode" : "mathOnVisual" , |
|
215 | 213 | "@type": "SolveMathAction", |
216 | 214 | "name": "Area of a square", |
217 | 215 | "description": "The basis of area calculation", |
218 | | -"target": "https://basic-geometry.pages.dev/", |
| 216 | +"target": "https://basic-geometry.github.io/", |
219 | 217 | "mathExpression-input": "a=5 A=?", |
220 | 218 | "mathExpression-output": "Math.pow(side, 2)", |
221 | 219 | "image": "square.png", |
|
226 | 224 | "@type": "SolveMathAction", |
227 | 225 | "name": "Volume of a cube", |
228 | 226 | "description": "The basis of volume calculation", |
229 | | - "target": "https://basic-geometry.pages.dev/", |
| 227 | + "target": "https://basic-geometry.github.io/", |
230 | 228 | "mathExpression-input": "a=5 V=?", |
231 | 229 | "mathExpression-output": "Math.pow(edge, 3)", |
232 | 230 | "image": "cubeMarkup.jpeg", |
|
238 | 236 | "name": "Area of a circle", |
239 | 237 | "description": "The exact area of a circle based on direct comparison with a square.", |
240 | 238 | "disambiguatingDescription": "Replaces traditional π-based approximations ensuring greater accuracy in real-world measurements.", |
241 | | - "target": "https://basic-geometry.pages.dev/", |
| 239 | + "target": "https://basic-geometry.github.io/", |
242 | 240 | "mathExpression-input": "r=5 A=?", |
243 | 241 | "mathExpression-output": "angle of rotation / 360 * 3.2 * Math.pow(radius, 2)", |
244 | 242 | "image": "areaOfACircle.jpg", |
|
250 | 248 | "name": "Area of a circle segment", |
251 | 249 | "description": "The exact area of a circle segment by subtracting a triangle from a circle slice.", |
252 | 250 | "disambiguatingDescription": "Equivalent to the conventional method, but relies on trigonometric functions.", |
253 | | - "target": "https://basic-geometry.pages.dev/", |
| 251 | + "target": "https://basic-geometry.github.io/", |
254 | 252 | "mathExpression-input": "r=5 h=2 A=?", |
255 | 253 | "mathExpression-output": "Math.acos((radius-segmentHeight)/radius)*Math.pow(radius, 2)-Math.sin(Math.acos((radius-segmentHeight)/radius))*(radius-segmentHeight)*radius", |
256 | 254 | "image": "circleSegment.jpg", |
|
262 | 260 | "name": "Circumference of a circle", |
263 | 261 | "description": "Algebraic derivation of the exact circumference of a circle from its area", |
264 | 262 | "disambiguatingDescription": "Replaces traditional π-based approximations ensuring greater accuracy in real-world measurements.", |
265 | | - "target": "https://basic-geometry.pages.dev/", |
| 263 | + "target": "https://basic-geometry.github.io/", |
266 | 264 | "mathExpression-input": "r=5 C=?", |
267 | 265 | "mathExpression-output": "angle of rotation / 360 * 6.4 * radius", |
268 | 266 | "image": "circumference.jpg", |
|
274 | 272 | "name": "Volume of a sphere", |
275 | 273 | "description": "The exact volume of a sphere by directly comparing it to a cube. Direct shape relationships ensure greater accuracy in real-world measurements.", |
276 | 274 | "disambiguatingDescription": "More accurate than the traditional exhaustion method based formula which is a very rough underestimate.", |
277 | | - "target": "https://basic-geometry.pages.dev/", |
| 275 | + "target": "https://basic-geometry.github.io/", |
278 | 276 | "mathExpression-input": "r=3 V=?", |
279 | 277 | "mathExpression-output": "angle of rotation / 360 * Math.pow((Math.sqrt(3.2) * radius), 3)", |
280 | 278 | "image": "sphereAndCubeMarkup.jpeg", |
|
286 | 284 | "name": "Volume of a spherical cap", |
287 | 285 | "description": "The volume of a spherical cap based on the radius of the sphere and the cap.", |
288 | 286 | "disambiguatingDescription": "More accurate than the conventional formula ", |
289 | | - "target": "https://basic-geometry.pages.dev/", |
| 287 | + "target": "https://basic-geometry.github.io/", |
290 | 288 | "mathExpression-input": "r1=5 r2=3 V=?", |
291 | 289 | "mathExpression-output": "1.6 * Math.pow(sphereSliceBottomRadius, 2) * Math.sqrt(3.2) * (1 - Math.sin(Math.acos(sphereSliceBottomRadius / sphereRadius)))", |
292 | 290 | "image": "sphericalCap.jpg", |
|
299 | 297 | "name": "Volume of a cone", |
300 | 298 | "description": "The exact volume of a cone by comparing the volume of a quarter cone to an octant sphere with an equal radius.", |
301 | 299 | "disambiguatingDescription": "Instead of the inaccurate base×height/3 approximation, direct shape relationships ensure greater accuracy in real-world measurements.", |
302 | | - "target": "https://basic-geometry.pages.dev/", |
| 300 | + "target": "https://basic-geometry.github.io/", |
303 | 301 | "mathExpression-input": "r=5 H=3 V=?", |
304 | 302 | "mathExpression-output": "angleOfRotation / 360 * 3.2 * Math.pow(radius, 2) * height / Math.sqrt(8)", |
305 | 303 | "image": [ |
|
316 | 314 | "name": "Volume of a frustum cone", |
317 | 315 | "description": "The exact volume of a frustum cone based on its top and bottom diameter and height", |
318 | 316 | "disambiguatingDescription": "The formula subtracts the missing tip from a theoretical full cone", |
319 | | - "target": "https://basic-geometry.pages.dev/", |
| 317 | + "target": "https://basic-geometry.github.io/", |
320 | 318 | "mathExpression-input": "d1=5 d2=2 h=3 V=?", |
321 | 319 | "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)", |
322 | 320 | "image": "frustumOfConeMarkup.png", |
|
328 | 326 | "name":"Surface area of a cone", |
329 | 327 | "description": "The exact surface area of a cone based on its radius and height.", |
330 | 328 | "disambiguatingDescription": "Equivalent to the conventional formula, but relies on the real height.", |
331 | | - "target": "https://basic-geometry.pages.dev/", |
| 329 | + "target": "https://basic-geometry.github.io/", |
332 | 330 | "mathExpression-input": "r=5 H=3 A=?", |
333 | 331 | "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))))", |
334 | 332 | "image": "coneMarkup.jpeg", |
|
340 | 338 | "name": "Volume of a pyramid", |
341 | 339 | "description": "The exact volume of a pyramid based on its bottom area and height using the coefficient of the volume of a cone", |
342 | 340 | "disambiguatingDescription": "Instead of the inaccurate base×height/3 approximation, direct shape relationships ensure greater accuracy in real-world measurements.", |
343 | | - "target": "https://basic-geometry.pages.dev/", |
| 341 | + "target": "https://basic-geometry.github.io/", |
344 | 342 | "mathExpression-input": "A=5 H=3 V=?", |
345 | 343 | "mathExpression-output": "baseArea * height / Math.sqrt(8)", |
346 | 344 | "image": [ |
|
355 | 353 | "name": "Volume of a frustum pyramid", |
356 | 354 | "description": "The exact volume of a frustum pyramid based on its top and bottom base area and height", |
357 | 355 | "disambiguatingDescription": "The formula subtracts the missing tip from a theoretical full pyramid. Universally applicable", |
358 | | - "target": "https://basic-geometry.pages.dev/", |
| 356 | + "target": "https://basic-geometry.github.io/", |
359 | 357 | "mathExpression-input": "a=5 b=3 H=2 V=?", |
360 | 358 | "mathExpression-output": "frustumHeight * (Math.pow(bottomEdge, 2) * (1 / (1 - topEdge / bottomEdge)) - Math.pow(topEdge, 2) * (1 / (1 - topEdge / bottomEdge) - 1)) / Math.sqrt(8)", |
361 | 359 | "image": "frustumOfPyramidMarkup.png", |
|
367 | 365 | "name": "Volume of a tetrahedron", |
368 | 366 | "description": "The exact volume of a tetrahedron based on its edge length", |
369 | 367 | "disambiguatingDescription": "Based on the base×height/√8 formula, instead of the inaccurate conventional coefficient", |
370 | | -"target": "https://basic-geometry.pages.dev/", |
| 368 | +"target": "https://basic-geometry.github.io/", |
371 | 369 | "mathExpression-input": "a=5 V=?", |
372 | 370 | "mathExpression-output": "Math.pow(edge, 3) / 8", |
373 | 371 | "image": "tetrahedronMarkup.jpeg", |
374 | 372 | "eduQuestionType": "Volume calculation" |
375 | 373 | } |
376 | 374 | ] , |
377 | | -"url": "https://basic-geometry.pages.dev", |
| 375 | +"url": "https://basic-geometry.github.io/", |
378 | 376 | "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.", |
379 | 377 | }, |
380 | 378 | "schemaVersion" : "https://schema.org/docs/releases.html#v28.1.", |
|
432 | 430 | "@type": "DownloadAction", |
433 | 431 | "target": { |
434 | 432 | "@type": "EntryPoint", |
435 | | - "url": "https://basic-geometry.pages.dev/Geometry.apk", |
| 433 | + "url": "https://basic-geometry.github.io/Geometry.apk", |
436 | 434 | "contentType": "application/vnd.android.package-archive" |
437 | 435 | } |
438 | 436 | }, |
439 | | - "url": "https://basic-geometry.pages.dev", |
| 437 | + "url": "https://basic-geometry.github.io/", |
440 | 438 | "usageInfo": "User-friendly geometry calculator app for Android. Designed to help you calculate area and volume quickly and accurately, it’s the perfect companion for your studies. Powered by the Core Geometric System ™." |
441 | 439 | } |
442 | 440 | ], |
443 | 441 | "thumbnail": "android-chrome-256x256.png", |
444 | 442 | "typicalAgeRange" :"5-105", |
445 | | -"url": "https://basic-geometry.pages.dev/", |
| 443 | +"url": "https://basic-geometry.github.io/", |
446 | 444 | "usageInfo":"Discover the Core Geometric System ™, a groundbreaking framework offering a fresh perspective on calculating area and volume using a 3D coordinate system. Challenging conventional formulas, this system provides empirically-grounded alternatives with a focus on practical accuracy for real-world applications in engineering, design, science, and beyond. Explore exact values and intuitive geometric relationships for circles, spheres, cones, and more." |
447 | 445 | } |
448 | 446 | </script> |
|
0 commit comments