The Process

73
of 1 73 The Process by Ian Beardsley copyright © 2015 by Ian Beardsley

description

To figure out whether extraterrestrials have been here, are here now, and whether there is a sensible way to make contact, we sort through physics, mathematics, and computer science, to see what we can find.

Transcript of The Process

of 1 73The ProcessbyIan Beardsleycopyright 2015 by Ian Beardsley of 2 73I 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 a and c: The following relationship holds: of 3 73The Program add.c#include #include int main(void) { int n; do { printf("How many numbers do you want averaged? "); scanf("%d", &n); } while (n