{"id":792,"date":"2024-10-20T12:15:27","date_gmt":"2024-10-20T12:15:27","guid":{"rendered":"http:\/\/fra.nzhoffmann.de\/?p=792"},"modified":"2024-10-20T12:15:28","modified_gmt":"2024-10-20T12:15:28","slug":"radosophie","status":"publish","type":"post","link":"http:\/\/fra.nzhoffmann.de\/?p=792","title":{"rendered":"Radosophie"},"content":{"rendered":"\n<p>Was ist eigentlich Radosophie?<\/p>\n\n\n\n<p>In <a href=\"https:\/\/www.ardmediathek.de\/video\/alpha-centauri\/was-ist-radosophie\/ard-alpha\/Y3JpZDovL2JyLmRlL2Jyb2FkY2FzdC9GMjAxN1dPMDAzNDE1QTA\">einer Folge der Serie &#8222;alpha Centauri&#8220;<\/a> berichtet Prof. Dr. Harald Lesch \u00fcber die Idee, das die Erbauer der Pyramiden \u00fcber unglaubliches Wissen verf\u00fcgt haben m\u00fcssen:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Man definiert eine Pyramiden-Elle, ein Pyramiden-Yard, und zwar ein 20-millionstel der Ausdehnung der Pyramide, und mit diesem elementaren Pyramiden-Yard und einigen h\u00f6chst interessanten Zahlenkombination hin und her lassen sich die tollsten Dinge ausrechnen.<\/p>\n<\/blockquote>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Wenn man also anf\u00e4ngt, rumzumessen, dann stellt man fest, in den Pyramiden steckt drin: die Masse des Elektrons, die Masse des Neutrons, die Feinstrukturkonstante, die Gravitationskonstante, die Lichtgeschwindigkeit, der Abstand Erde &#8211; Sonne, all diese Dinge.<\/p>\n<\/blockquote>\n\n\n\n<p>Und wie macht man das jetzt genau? Dazu zitiere ich mal  <a href=\"https:\/\/cdn.centerforinquiry.org\/wp-content\/uploads\/sites\/29\/1992\/01\/22165201\/p62.pdf\">Cornelis de Jager,<\/a> den eigentlichen Erfinder der Radodophie:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Piazzi-Smith and others advanced extreme claims. By  introducing the &#8222;pyramid-yard&#8220; (p.y.), which was 1\/20,000,000 of  the earth&#8217;s diameter (64 cm), it was found that the baseline length of the Great Pyramid was 365.25 p.y.\u2014exactly the number of days in the year. Does this mean that the builders of the pyramid knew the earth&#8217;s diameter? Or the precise length of the year?<\/p>\n<\/blockquote>\n\n\n\n<p>Eigentlich sollte jedem rational denkenden Menschen sofort klar sein, dass das Bl\u00f6dsinn sein muss. F\u00fcr alle anderen hier ein weiteres Zitat aus diesem Artikel.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>But one of the more surprising statements was that a precise mathematical formula could be found relating the base length of the pyramid in pyramid yards with the distance between the earth and the sun in kilometers! This would mean that the builders of the pyramid already knew the length of the kilometer several thousand years before the introduction of the metric  system!<\/p>\n<\/blockquote>\n\n\n\n<p>Hier beginnt die Radosophie: Cornelis de Jager hat sein Fahrrad vermessen, und festgestellt, da\u00df auch die hier Erbauer geheimes Wissen in ihren Fahrr\u00e4dern versteckt haben:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>I measured the diameters of my bike&#8217;s:<br>\u2014pedals, symbolizing the forward-going dynamics;<br>\u2014front wheel, which directs my ways into the unknown future;<br>\u2014lamp, enlightening my paths;<br>\u2014bell, through which I communicate with encounterers.<br>Thus I laid the building stones for a new holistic four-dimensional religion apt to the coming New Age of Aquarius: cyclosophy.<br>The measurements were expressed in Holy Bike Inches, being 17 mm. This is so since 1 is the first prime number and 17 the seventh, and because seven is the holy number. Calling P, W, L, and B the four measured quantities, it turns out that<br>P\u00b2 * sqrt(LB) = 1823,<br>which is the ratio between the masses of the proton and the electron.<\/p>\n<\/blockquote>\n\n\n\n<p>Ab heute hat jeder die M\u00f6glichkeit, in seinem eigenen Fahrrad nach versteckten physikalischen Konstanten zu suchen:<\/p>\n\n\n\n<script>\n\nfunction rado(a, zielwert) {\n    var p = [];\n\tp.push([0, 1]);\n    for (let i=1; i<=5; i++) {\n\t\tp.push([i, 1]);\n\t\tp.push([-i, 1]);\n\t}\n    for (let i of [1, 3, 5]) {\n\t\tp.push([i, 2]);\n\t\tp.push([-i, 2]);\n\t}\n    for (let i of [1, 2, 4, 5]) {\n\t\tp.push([i, 3]);\n\t\tp.push([-i, 3]);\n\t}\n\tvar potenzen = p;\n\t\n    \/\/ Calculate the sum and output\n    let best_b = [[0, 1] , [0, 1], [0,1 ], [0, 1]];\n    let best_v = calc(a, best_b);\n\n    for (let i of potenzen) {\n        for (let j of potenzen) {\n            for (let k of potenzen) {\n                for (let l of potenzen) {\n                    const b = [i, j, k, l];\n                    const v = calc(a, b);\n                    if (Math.abs(zielwert - v) < Math.abs(zielwert - best_v)) {\n                        best_b = b;\n                        best_v = v;\n                    }\n                }\n            }\n        }\n    }\n    \/\/console.log(best_b, best_v);\n\treturn mathml(best_b, best_v);\n}\n\n\nfunction precise(x) {\n  return x.toPrecision(4);\n}\n\n\nfunction calc(a, b) {\n    let r = 1;\n    for (let i = 0; i < a.length; i++) {\n\t\tlet p = b[i][0] \/ b[i][1];\n        r *= Math.pow(a[i], p);\n    }\n    return r;\n}\n\n\nfunction mathml_print_single(char, exponent) {\n\tif (exponent[0] == 0)\n\t\t\/\/ A^0 = 1\n\t\treturn `1`;\n\tif (exponent[1] == 1) {\n\t\t\/\/ A^(integer)\n\t\tif (exponent[0] == 1)\n\t\t\t\/\/ A^1 = A\n\t\t\treturn `<mi>${char}<\/mi>`\n\t\t\/\/ A^n\n\t\treturn `<msup><mi>${char}<\/mi><mn>${exponent[0]}<\/mn><\/msup>`\n\t}\n\t\/\/ A^(b\/c) = c_sqrt(A^b)\n\tif (exponent[0] == 1) \n\t\t\/\/ b == 1\n\t\treturn `<mroot><mi>${char}<\/mi><mn>${exponent[1]}<\/mn><\/mroot>`;\n\treturn `<mroot><msup><mi>${char}<\/mi><mn>${exponent[0]}<\/mn><\/msup><mn>${exponent[1]}<\/mn><\/mroot>`;\n}\n\n\nfunction mathml_print_product(chars, exponents) {\n\t\/\/console.log(chars, exponents)\n\tlet connection = \"\";\n\tlet s = `<mrow>`\n    for (let i = 0; i < chars.length; i++) {\n\t\ts = s + connection + mathml_print_single(chars[i], exponents[i]);\n\t\tconnection = `<mo>*<\/mo>`;\n\t}\n\ts = s + `<\/mrow>`;\n\t\/\/console.log(s);\n\treturn s\n}\n\n\nfunction mathml(b, v) {\n\tlet s = `<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">`;\n\tlet fraction = false;\n\tlet chars = \"ABCD\";\n\tlet num = []; let num_chars = \"\";\n\tlet den = []; let den_chars = \"\";\n    for (let i = 0; i < b.length; i++) {\n\t\tif (b[i][0] < 0 ) {\n\t\t\tfraction = true;\n\t\t\tden.push([Math.abs(b[i][0]), b[i][1]]);\n\t\t\tden_chars = den_chars + chars[i];\n\t\t} else {\n\t\t\tnum.push(b[i]);\n\t\t\tnum_chars = num_chars + chars[i];\n\t\t}\t\t\t\n\t}\n\tif (fraction) {\n\t\ts = s + \"<mfrac>\";\n\t\ts = s + mathml_print_product(num_chars, num);\n\t\ts = s + mathml_print_product(den_chars, den);\n\t\ts = s + \"<\/mfrac>\";\n\t} else {\n\t\ts = s + mathml_print_product(num_chars, num);\n\t}\n\ts = s + `<mo>=<\/mo><mn>${precise(v)}<\/mn>`\n\ts = s + `<\/math>`;\n\treturn s;\n}\n\n\nfunction rado_web() {\n\tlet a = [];\n\ta.push(parseFloat(document.getElementById(\"A\").value));\n\ta.push(parseFloat(document.getElementById(\"B\").value));\n\ta.push(parseFloat(document.getElementById(\"C\").value));\n\ta.push(parseFloat(document.getElementById(\"D\").value));\n\tlet zielwert = parseFloat(document.getElementById(\"Z\").value);\n\tlet s = rado(a, zielwert);\n\tdocument.querySelector(\"#output\").innerHTML=\ts;\n}\n\n<\/script>\n\n\n\n<form>\n  <table>\n  <tr>\n  <td>A: Durchmesser der Pedale<\/td>\n  <td><input id=\"A\" type=\"number\" value=\"55\">cm<\/td>\n  <\/tr>\n  <tr>\n  <td> B: Durchmesser des Vorderrades<\/td>\n  <td><input id=\"B\" type=\"number\" value=\"71.1\">cm<\/td>\n  <\/tr>\n  <tr>\n  <td> C: Durchmesser der Lampe<\/td>\n  <td><input id=\"C\" type=\"number\" value=\"9.5\">cm<\/td>\n  <\/tr>\n  <tr>\n  <td> D: Durchmesser der Klingel<\/td>\n  <td><input id=\"D\" type=\"number\" value=\"4.8\">cm<\/td>\n  <\/tr>\n  <tr>\n  <td> Masseverh\u00e4ltnis Proton\/Elektron<\/td>\n  <td><input id=\"Z\" type=\"number\" value=\"1823\"><\/td>\n  <\/tr>\n  <\/table>\n  <button type=\"button\" id=\"calculate\" onclick=\"rado_web()\">Berechnen<\/button>\n<\/form>\n\n<div id=\"output\"><\/div>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Was ist eigentlich Radosophie? In einer Folge der Serie &#8222;alpha Centauri&#8220; berichtet Prof. Dr. Harald Lesch \u00fcber die Idee, das die Erbauer der Pyramiden \u00fcber unglaubliches Wissen verf\u00fcgt haben m\u00fcssen: Man definiert eine Pyramiden-Elle, ein Pyramiden-Yard, und zwar ein 20-millionstel der Ausdehnung der Pyramide, und mit diesem elementaren Pyramiden-Yard und einigen h\u00f6chst interessanten Zahlenkombination hin &hellip; <a href=\"http:\/\/fra.nzhoffmann.de\/?p=792\" class=\"more-link\"><span class=\"screen-reader-text\">Radosophie<\/span> weiterlesen<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-792","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/fra.nzhoffmann.de\/index.php?rest_route=\/wp\/v2\/posts\/792","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/fra.nzhoffmann.de\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/fra.nzhoffmann.de\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/fra.nzhoffmann.de\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/fra.nzhoffmann.de\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=792"}],"version-history":[{"count":24,"href":"http:\/\/fra.nzhoffmann.de\/index.php?rest_route=\/wp\/v2\/posts\/792\/revisions"}],"predecessor-version":[{"id":816,"href":"http:\/\/fra.nzhoffmann.de\/index.php?rest_route=\/wp\/v2\/posts\/792\/revisions\/816"}],"wp:attachment":[{"href":"http:\/\/fra.nzhoffmann.de\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=792"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/fra.nzhoffmann.de\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=792"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/fra.nzhoffmann.de\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=792"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}