Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Imagine how long it would take to accelerate to the speed of light (if it were possible)... even at 7gs of continuous 24/hr daily exposure... how long would it take? OK... now once you GET to that speed you only have another 100K YEARS of travel at that speed to cross our own galaxy... Now look at some of the Hubble images... up until the last century people thought all those bright points of light were stars... and now we know that there are, in fact, some 50-100 BILLION more galaxies like our own... so when you see an image that shows two galaxies close to each other... and then you realize by our own perspective (of being able to see them as dots)... just what the distances are between us... and perhaps you START to grasp the enormity of the issue!
Few can grasp this even slightly... but some can. While it won't change anything here I think it's about the most interesting topic there is.
What really bakes my noodle is, if space and time are joined, then you can't really ask what happened before the big bang, because there was no time before the big bang.
Imagine how long it would take to accelerate to the speed of light (if it were possible)... even at 7gs of continuous 24/hr daily exposure... how long would it take? OK... now once you GET to that speed you only have another 100K YEARS of travel at that speed to cross our own galaxy... Now look at some of the Hubble images... up until the last century people thought all those bright points of light were stars... and now we know that there are, in fact, some 50-100 BILLION more galaxies like our own... so when you see an image that shows two galaxies close to each other... and then you realize by our own perspective (of being able to see them as dots)... just what the distances are between us... and perhaps you START to grasp the enormity of the issue!
Few can grasp this even slightly... but some can. While it won't change anything here I think it's about the most interesting topic there is.
You should publish that somewhere. I'm sure some scientists will want to know you figured it all out...
Ever since the big bang, the expansion of the universe is slowing down, therefore the kinetic energy is being converted to potential energy.
Before the big bang was pure energy.
I can't believe that Mikko isn't a proponent of the steady-state theory. Oscillations are bad Mikko... dampen that shizzy.
#include <iostream>
using namespace std;
bool fin;
bool a_started;
bool b_started;
int a_start();
int b_start();
int main()
{
//Set intial parameters
a_started = false;
b_started = false;
fin = false;
cout<<"Starting Cycle.."<<endl;
a_start();
system("PAUSE");
}
int a_start(void)
{
if(b_started == false)
{
cout<<"A calling B regress, output = 0"<<endl;
b_start();
}
if(b_started == true)
{
a_started = true;
cout<<"Finished, output = 1"<<endl;
}
return 0;
}
int b_start(void)
{
if(a_started == false)
{
cout<<"B calling A regress, output = 0"<<endl;
a_start();
}
if(a_started == true)
{
b_started = true;
cout<<"Finished, output = 1"<<endl;
}
return 0;
}
Its late, sorry guys for going over the top again, I'll shut up now, I'm geeking out again..:engel017:
Of course, this can not be resolved, even given an infinite time!
What what about beyond ('outside') *that*? There has to be *something*.
Not only is the universe stranger than we imagine, it is stranger than we can imagine.
It's funny, you live in the universe, but you never get to do these things until someone comes to visit.