The Program Discover: Biomeans, Electrophi, And The Stellar Mystery

17
of 1 17 The Program Discover: Biomeans, Electrophi, And The Stellar Mystery by Ian Beardsley August 10, 2015 copyright © 2015 by Ian Beardsley

description

I am writing a program in C and Python that searches for hidden nuances in Nature and The Universe. These are two results that are very mysterious: "The Gateway of Manifold Secrets", as Lao Tzu called it.

Transcript of The Program Discover: Biomeans, Electrophi, And The Stellar Mystery

of 1 17The Program Discover: Biomeans, Electrophi, And The Stellar MysterybyIan BeardsleyAugust 10, 2015copyright 2015 by Ian Beardsley of 2 17I am writing a program in C and Python called Discover.It searches for hidden nuances in Na-ture and the Universe.The rst program is called add.It is based on:The arithmetic mean is the midpoint, c, between two extremes a, and c: The harmonic mean is not necessarily the midpoint between two extremes but is the value that occurs most frequently: The geometric mean, b, between a and c, is the side of a square that has the same area as a rec-tangle with sides and c: The following relationship holds: of 3 17The Program add.c#include #include int main(void) { int n; do { printf("How many numbers do you want averaged? "); scanf("%d", &n); } while (n