APOD: Split the Universe (2017 Apr 01)

Comments and questions about the APOD on the main view screen.
Joe Rudmin

Re: APOD: Split the Universe (2017 Apr 01)

Post by Joe Rudmin » Mon Apr 03, 2017 8:01 pm

The Bell Inequality distinguishes between deterministic and indeterministic universes. Einstein-Podolosky-Rosen (EPR) experiments, which all use the Bell inequality, consistently show that we live in an indeterministic universe. Back in the late 1990's, I helped with an experiment by John Yukich which showed the existence of parallel universes. John did photodetachment with a pulsed laser of ions in a Penning ion trap. The laser light passed through a Michelson Interferometer before entering the trap. When the laser is well aligned through the interferometer, the interference pattern looks like a bull's eye target, with center light or dark depending on the positions of the mirrors in the interferometer. John was able to find parameters such that he had very significantly higher rates of photodetachment when it was DARK in the trap than when it was light! Each photon of light traveled one arm of the interferometer and detached an electron at one point in time, AND traveled the other arm of the interferometer and detached the SAME electron at a different point in time. When the interference for the photon was destructive, the interference for the electron was constructive, and vice versa. So he had two slightly different histories interfering. BOTH histories had to exist to get the result John Yukich observed, so at least two slightly different parallel universes exist. John Yukich is now a professor of physics at Davidson University in North Carolina.

User avatar
RJN
Baffled Boffin
Posts: 1667
Joined: Sat Jul 24, 2004 1:58 pm
Location: Michigan Tech

Re: APOD: Split the Universe (2017 Apr 01)

Post by RJN » Mon Apr 03, 2017 8:14 pm

Case wrote: Edit: For even/odd one could use the function (n & 1) instead of (n & 2).
Thanks! I just made that change. So now the APOD is really down to 0.001 sec! But then again I don't understand the & function in Javascript like I thought I did. I thought it was just the "mod" function. Is it really a "(mod + 1)" function? Or something else?

User avatar
Chris Peterson
Abominable Snowman
Posts: 18113
Joined: Wed Jan 31, 2007 11:13 pm
Location: Guffey, Colorado, USA
Contact:

Re: APOD: Split the Universe (2017 Apr 01)

Post by Chris Peterson » Mon Apr 03, 2017 10:25 pm

I am reminded of a hardware random number generator I built back around 1980, with a geiger tube and an americium strip from an anti-static brush. It plugged into a small computer.

Today, you can buy an assortment of computer cards that provide either quantum or classical random numbers, using a variety of internal techniques. It's a big deal for cryptography. You can also tie into random.org to get truly random numbers served, derived from atmospheric radio noise.
Chris

*****************************************
Chris L Peterson
Cloudbait Observatory
https://www.cloudbait.com

User avatar
Case
Commander
Posts: 616
Joined: Sat Jun 09, 2007 10:08 pm
Location: (52°N, 06°E)

Re: APOD: Split the Universe (2017 Apr 01)

Post by Case » Mon Apr 03, 2017 10:30 pm

RJN wrote:Or something else?
Something else: ‘&’ here is a so-called bitwise operator. It represents each number as a binary 32-bit signed number, then performs the AND operator on each pair of corresponding bits. The result is then converted back to (decimal) number.

Code: Select all

    (1010110110)0110101001101101110100111001100 (decimal 1491246442956)
AND             0000000000000000000000000000010 (decimal 2)
=               0000000000000000000000000000000 (decimal 0)

User avatar
Case
Commander
Posts: 616
Joined: Sat Jun 09, 2007 10:08 pm
Location: (52°N, 06°E)

Re: APOD: Split the Universe (2017 Apr 01)

Post by Case » Mon Apr 03, 2017 11:43 pm

Chris Peterson wrote:I am reminded of a hardware random number generator I built back around 1980, with a geiger tube and an americium strip from an anti-static brush. […]You can also tie into random.org to get truly random numbers served, derived from atmospheric radio noise.
That reminds me … the old analog tvs would display a noise pattern when not tuned to a channel. Wasn’t that mostly atmospheric noise, even partly cosmic background radiation?

User avatar
Ann
4725 Å
Posts: 13374
Joined: Sat May 29, 2010 5:33 am

Re: APOD: Split the Universe (2017 Apr 01)

Post by Ann » Tue Apr 04, 2017 4:55 am

Case wrote:
Chris Peterson wrote:I am reminded of a hardware random number generator I built back around 1980, with a geiger tube and an americium strip from an anti-static brush. […]You can also tie into random.org to get truly random numbers served, derived from atmospheric radio noise.
That reminds me … the old analog tvs would display a noise pattern when not tuned to a channel. Wasn’t that mostly atmospheric noise, even partly cosmic background radiation?
Yes, I've always thought that the "war of the ants" (as it was called in Swedish) was actually the sound of the universe?
Click to play embedded YouTube video.
Ann
Color Commentator

User avatar
neufer
Vacationer at Tralfamadore
Posts: 18805
Joined: Mon Jan 21, 2008 1:57 pm
Location: Alexandria, Virginia

Re: APOD: Split the Universe (2017 Apr 01)

Post by neufer » Tue Apr 04, 2017 12:41 pm

Case wrote:
Chris Peterson wrote:
I am reminded of a hardware random number generator I built back around 1980, with a geiger tube and an americium strip from an anti-static brush. […]You can also tie into random.org to get truly random numbers served, derived from atmospheric radio noise.
That reminds me … the old analog tvs would display a noise pattern when not tuned to a channel. Wasn’t that mostly atmospheric noise, even partly cosmic background radiation?
Not "atmospheric." TV frequencies pass freely through the atmosphere.

Off channel analog TVs basically display a combination of:
  • 1) 2.73 K thermal radiation from the sky and
    2) ~273 K thermal radiation from the ground.
Hence ~1% of the TV pixels come from space.

Place the TV in a metal container that totally blocks the thermal ground radiation
and you will only pick up the CBR (and win a Nobel Prize if it's not too late).
Art Neuendorffer

User avatar
Chris Peterson
Abominable Snowman
Posts: 18113
Joined: Wed Jan 31, 2007 11:13 pm
Location: Guffey, Colorado, USA
Contact:

Re: APOD: Split the Universe (2017 Apr 01)

Post by Chris Peterson » Tue Apr 04, 2017 2:37 pm

neufer wrote:Off channel analog TVs basically display a combination of:
  • 1) 2.73 K thermal radiation from the sky and
    2) ~273 K thermal radiation from the ground.
Hence ~1% of the TV pixels come from space
To nitpick a bit, the pattern on TVs wasn't from the thermal radiation itself, but from the shot noise on the thermal radiation signal.
Chris

*****************************************
Chris L Peterson
Cloudbait Observatory
https://www.cloudbait.com

User avatar
neufer
Vacationer at Tralfamadore
Posts: 18805
Joined: Mon Jan 21, 2008 1:57 pm
Location: Alexandria, Virginia

Re: APOD: Split the Universe (2017 Apr 01)

Post by neufer » Tue Apr 04, 2017 3:00 pm

Chris Peterson wrote:
neufer wrote:Off channel analog TVs basically display a combination of:
  • 1) 2.73 K thermal radiation from the sky and
    2) ~273 K thermal radiation from the ground.
Hence ~1% of the TV pixels come from space
To nitpick a bit, the pattern on TVs wasn't from the thermal radiation itself, but from the shot noise on the thermal radiation signal.
That would seem to me to be a perfectly reasonable argument to make... if I hadn't already seen (back on analog TVs) many prominent scientists make the very claim that ~1% of TV pixel noise comes from the CBR. I also know from my old NOAA job that microwave sounder instruments (which looked at high frequencies that did pick up thermal radiation from the atmosphere) were calibrated by looking at the 2.73K CBR.
Art Neuendorffer

User avatar
Chris Peterson
Abominable Snowman
Posts: 18113
Joined: Wed Jan 31, 2007 11:13 pm
Location: Guffey, Colorado, USA
Contact:

Re: APOD: Split the Universe (2017 Apr 01)

Post by Chris Peterson » Tue Apr 04, 2017 3:22 pm

neufer wrote:
Chris Peterson wrote:
neufer wrote:Off channel analog TVs basically display a combination of:
  • 1) 2.73 K thermal radiation from the sky and
    2) ~273 K thermal radiation from the ground.
Hence ~1% of the TV pixels come from space
To nitpick a bit, the pattern on TVs wasn't from the thermal radiation itself, but from the shot noise on the thermal radiation signal.
That would seem to me to be a perfectly reasonable argument to make... if I hadn't already seen (back on analog TVs) many prominent scientists make the very claim that ~1% of TV pixel noise comes from the CBR. I also know from my old NOAA job that microwave sounder instruments (which looked at high frequencies that did pick up thermal radiation from the atmosphere) were calibrated by looking at the 2.73K CBR.
I believe that 1% of the pixel noise comes from the CBR. But it isn't the CBR signal, it's the noise on that signal. It's just a slightly sloppy way of expressing it. The concept is the same.

In reality, I think that the actual source of the noise is probably inside the TV itself. That is, the CMB signal produces an output from the receiver, but the noise on that output is mainly the product of thermal noise in the receiver and amplifier, and not the shot noise on the signal itself. What we observe is dependent upon the existence of the CMB, but isn't a direct measure of it.
Chris

*****************************************
Chris L Peterson
Cloudbait Observatory
https://www.cloudbait.com

User avatar
neufer
Vacationer at Tralfamadore
Posts: 18805
Joined: Mon Jan 21, 2008 1:57 pm
Location: Alexandria, Virginia

Re: APOD: Split the Universe (2017 Apr 01)

Post by neufer » Tue Apr 04, 2017 3:32 pm

Chris Peterson wrote:
I believe that 1% of the pixel noise comes from the CBR. But it isn't the CBR signal, it's the noise on that signal. It's just a slightly sloppy way of expressing it. The concept is the same.
The thermal signal from the CBR & the ground is a "noise signal"
... and one that can be accurately measured with proper calibration.

Shot noise is really more someone has to be worried about in the optics realm:
https://en.wikipedia.org/wiki/Shot_noise wrote:
<<Shot noise is easily observable in the case of photomultipliers and avalanche photodiodes used in the Geiger mode, where individual photon detections are observed. However the same noise source is present with higher light intensities measured by any photo detector, and is directly measurable when it dominates the noise of the subsequent electronic amplifier.>>
Art Neuendorffer

User avatar
Chris Peterson
Abominable Snowman
Posts: 18113
Joined: Wed Jan 31, 2007 11:13 pm
Location: Guffey, Colorado, USA
Contact:

Re: APOD: Split the Universe (2017 Apr 01)

Post by Chris Peterson » Tue Apr 04, 2017 3:42 pm

neufer wrote:
Chris Peterson wrote: I believe that 1% of the pixel noise comes from the CBR. But it isn't the CBR signal, it's the noise on that signal. It's just a slightly sloppy way of expressing it. The concept is the same.
The thermal signal from the CBR & the ground is a "noise signal"
No, it isn't. Aim a microwave receiver at the sky and you'll see the CMB signal- a blackbody curve peaking at a wavelength of around 2mm. In a noiseless system, this would simply produce a uniform background intensity on a TV screen. The snow is the product of noise on this signal- either shot noise on the signal itself, or noise inside the TV electronics superimposed on the DC signal.
Chris

*****************************************
Chris L Peterson
Cloudbait Observatory
https://www.cloudbait.com

User avatar
neufer
Vacationer at Tralfamadore
Posts: 18805
Joined: Mon Jan 21, 2008 1:57 pm
Location: Alexandria, Virginia

Re: APOD: Split the Universe (2017 Apr 01)

Post by neufer » Tue Apr 04, 2017 4:03 pm

Chris Peterson wrote:
neufer wrote:
Chris Peterson wrote:
I believe that 1% of the pixel noise comes from the CBR. But it isn't the CBR signal, it's the noise on that signal. It's just a slightly sloppy way of expressing it. The concept is the same.
The thermal signal from the CBR & the ground is a "noise signal"
No, it isn't. Aim a microwave receiver at the sky and you'll see the CMB signal- a blackbody curve peaking at a wavelength of around 2mm. In a noiseless system, this would simply produce a uniform background intensity on a TV screen. The snow is the product of noise on this signal- either shot noise on the signal itself, or noise inside the TV electronics superimposed on the DC signal.
  • Well...let's just look it up:
https://en.wikipedia.org/wiki/Noise_(video) wrote:

<<Noise, in analog video and television, is a random dot pixel pattern of static displayed when no transmission signal is obtained by the antenna receiver of television sets and other display devices. The random pattern superimposed on the picture, visible as a random flicker of "dots" or "snow", is the result of electronic noise and radiated electromagnetic noise accidentally picked up by the antenna. This effect is most commonly seen with analog TV sets or blank VHS tapes.

There are many sources of electromagnetic noise which cause the characteristic display patterns of static. Atmospheric sources of noise are the most ubiquitous, and include electromagnetic signals prompted by cosmic microwave background radiation, or more localized radio wave noise from nearby electronic devices.

The display device itself is also a source of noise, due in part to thermal noise produced by the inner electronics. Most of this noise comes from the first transistor the antenna is attached to.

UK viewers used to see "snow" on black after sign-off, instead of "bugs" on white, a purely technical artifact due to old 405-line British senders using positive rather than the negative video modulation used in Canada, the U.S., and (currently) the UK as well. Since one impression of the "snow" is of fast-flickering black bugs on a white background, the phenomenon is often called myrornas krig in Swedish, myrekrig in Danish, hangyák háborúja in Hungarian, and semut bertengkar in Indonesian, which all translate to "war of the ants". It is also known as karıncaların filmi in Turkish, meaning "film/movie of ants," hangyafoci in Hungarian which means "ant soccer", and in Romanian, purici, which translates into "fleas".

Due to the algorithmic functioning of a digital television set's electronic circuitry and the inherent quantization of its screen, the "snow" seen on digital TV is less random. Most modern televisions automatically change to a blue screen or turn to standby after some time if static is present.>>
Art Neuendorffer

User avatar
Chris Peterson
Abominable Snowman
Posts: 18113
Joined: Wed Jan 31, 2007 11:13 pm
Location: Guffey, Colorado, USA
Contact:

Re: APOD: Split the Universe (2017 Apr 01)

Post by Chris Peterson » Tue Apr 04, 2017 4:25 pm

neufer wrote:
Chris Peterson wrote:
neufer wrote: The thermal signal from the CBR & the ground is a "noise signal"
No, it isn't. Aim a microwave receiver at the sky and you'll see the CMB signal- a blackbody curve peaking at a wavelength of around 2mm. In a noiseless system, this would simply produce a uniform background intensity on a TV screen. The snow is the product of noise on this signal- either shot noise on the signal itself, or noise inside the TV electronics superimposed on the DC signal.
  • Well...let's just look it up:
https://en.wikipedia.org/wiki/Noise_(video) wrote:

<<Noise, in analog video and television, is a random dot pixel pattern of static displayed when no transmission signal is obtained by the antenna receiver of television sets and other display devices. The random pattern superimposed on the picture, visible as a random flicker of "dots" or "snow", is the result of electronic noise and radiated electromagnetic noise accidentally picked up by the antenna. This effect is most commonly seen with analog TV sets or blank VHS tapes.

There are many sources of electromagnetic noise which cause the characteristic display patterns of static. Atmospheric sources of noise are the most ubiquitous, and include electromagnetic signals prompted by cosmic microwave background radiation, or more localized radio wave noise from nearby electronic devices.

The display device itself is also a source of noise, due in part to thermal noise produced by the inner electronics. Most of this noise comes from the first transistor the antenna is attached to.

UK viewers used to see "snow" on black after sign-off, instead of "bugs" on white, a purely technical artifact due to old 405-line British senders using positive rather than the negative video modulation used in Canada, the U.S., and (currently) the UK as well. Since one impression of the "snow" is of fast-flickering black bugs on a white background, the phenomenon is often called myrornas krig in Swedish, myrekrig in Danish, hangyák háborúja in Hungarian, and semut bertengkar in Indonesian, which all translate to "war of the ants". It is also known as karıncaların filmi in Turkish, meaning "film/movie of ants," hangyafoci in Hungarian which means "ant soccer", and in Romanian, purici, which translates into "fleas".

Due to the algorithmic functioning of a digital television set's electronic circuitry and the inherent quantization of its screen, the "snow" seen on digital TV is less random. Most modern televisions automatically change to a blue screen or turn to standby after some time if static is present.>>
In other words, exactly what I said.
Chris

*****************************************
Chris L Peterson
Cloudbait Observatory
https://www.cloudbait.com

User avatar
neufer
Vacationer at Tralfamadore
Posts: 18805
Joined: Mon Jan 21, 2008 1:57 pm
Location: Alexandria, Virginia

Re: APOD: Split the Universe (2017 Apr 01)

Post by neufer » Tue Apr 04, 2017 5:25 pm

Chris Peterson wrote:
In other words, exactly what I said.
  • Not exactly.
You seem to be saying that the antenna thermal pickup contributes only to the overall gray of the screen while the "ants" represent the random internal TV noise.

The Wikipedia article seems to be saying that the "ants" represent
the antenna thermal pickup plus some unquantified internal TV noise.
Art Neuendorffer

User avatar
Chris Peterson
Abominable Snowman
Posts: 18113
Joined: Wed Jan 31, 2007 11:13 pm
Location: Guffey, Colorado, USA
Contact:

Re: APOD: Split the Universe (2017 Apr 01)

Post by Chris Peterson » Tue Apr 04, 2017 5:38 pm

neufer wrote:
Chris Peterson wrote:
In other words, exactly what I said.
  • Not exactly.
You seem to be saying that the antenna thermal pickup contributes only to the overall gray of the screen while the "ants" represent the random internal TV noise.

The Wikipedia article seems to be saying that the "ants" represent
the antenna thermal pickup plus some unquantified internal TV noise.
Whatever. The point is that the snow is probably not made up of either the CMB or thermal noise from the Earth.
Chris

*****************************************
Chris L Peterson
Cloudbait Observatory
https://www.cloudbait.com

User avatar
neufer
Vacationer at Tralfamadore
Posts: 18805
Joined: Mon Jan 21, 2008 1:57 pm
Location: Alexandria, Virginia

Re: APOD: Split the Universe (2017 Apr 01)

Post by neufer » Tue Apr 04, 2017 6:14 pm

Chris Peterson wrote:
Whatever. The point is that the snow is probably not made up of either the CMB or thermal noise from the Earth.
https://en.wikipedia.org/wiki/Noise_(video) wrote:
<<The random pattern superimposed on the picture, visible as a random flicker of "dots" or "snow", is the result of electronic noise and radiated electromagnetic noise accidentally picked up by the antenna [including] electromagnetic signals prompted by cosmic microwave background radiation.>>
Art Neuendorffer

User avatar
Chris Peterson
Abominable Snowman
Posts: 18113
Joined: Wed Jan 31, 2007 11:13 pm
Location: Guffey, Colorado, USA
Contact:

Re: APOD: Split the Universe (2017 Apr 01)

Post by Chris Peterson » Tue Apr 04, 2017 6:19 pm

neufer wrote:
Chris Peterson wrote:
Whatever. The point is that the snow is probably not made up of either the CMB or thermal noise from the Earth.
https://en.wikipedia.org/wiki/Noise_(video) wrote:
<<The random pattern superimposed on the picture, visible as a random flicker of "dots" or "snow", is the result of electronic noise and radiated electromagnetic noise accidentally picked up by the antenna [including] electromagnetic signals prompted by cosmic microwave background radiation.>>
Yes. Which does not mean we are seeing any noise from the CMB.
Chris

*****************************************
Chris L Peterson
Cloudbait Observatory
https://www.cloudbait.com

BDanielMayfield
Don't bring me down
Posts: 2524
Joined: Thu Aug 02, 2012 11:24 am
AKA: Bruce
Location: East Idaho

Re: APOD: Split the Universe (2017 Apr 01)

Post by BDanielMayfield » Wed Apr 05, 2017 2:03 pm

This topic once was thoughtful and important, dealing with the age old free will vs determinism debate, but then it got drowned out by noise. :?
Just as zero is not equal to infinity, everything coming from nothing is illogical.

User avatar
Chris Peterson
Abominable Snowman
Posts: 18113
Joined: Wed Jan 31, 2007 11:13 pm
Location: Guffey, Colorado, USA
Contact:

Re: APOD: Split the Universe (2017 Apr 01)

Post by Chris Peterson » Wed Apr 05, 2017 2:07 pm

BDanielMayfield wrote:This topic once was thoughtful and important, dealing with the age old free will vs determinism debate, but then it got drowned out by noise. :?
Cosmic noise, though.
Chris

*****************************************
Chris L Peterson
Cloudbait Observatory
https://www.cloudbait.com

User avatar
Fred the Cat
Theoretic Apothekitty
Posts: 958
Joined: Mon Feb 22, 2016 4:09 pm
AKA: Ron
Location: Eagle, Idaho

Re: APOD: Split the Universe (2017 Apr 01)

Post by Fred the Cat » Wed Apr 05, 2017 6:09 pm

Suppose it isn't pigeon poop either… :no:
Freddy's Felicity "Only ascertain as a cat box survivor"

BDanielMayfield
Don't bring me down
Posts: 2524
Joined: Thu Aug 02, 2012 11:24 am
AKA: Bruce
Location: East Idaho

Re: APOD: Split the Universe (2017 Apr 01)

Post by BDanielMayfield » Thu Apr 06, 2017 2:40 pm

Joe Rudmin wrote:The Bell Inequality distinguishes between deterministic and indeterministic universes. Einstein-Podolosky-Rosen (EPR) experiments, which all use the Bell inequality, consistently show that we live in an indeterministic universe.

I like this, and it seems most logical too, for both micro and macro things. Just as the time when an individual unstable atom will decay cannot be precisely predicted, nether can the exact actions of people be predicted.
Back in the late 1990's, I helped with an experiment by John Yukich which showed the existence of parallel universes. John did photodetachment with a pulsed laser of ions in a Penning ion trap. The laser light passed through a Michelson Interferometer before entering the trap. When the laser is well aligned through the interferometer, the interference pattern looks like a bull's eye target, with center light or dark depending on the positions of the mirrors in the interferometer. John was able to find parameters such that he had very significantly higher rates of photodetachment when it was DARK in the trap than when it was light! Each photon of light traveled one arm of the interferometer and detached an electron at one point in time, AND traveled the other arm of the interferometer and detached the SAME electron at a different point in time. When the interference for the photon was destructive, the interference for the electron was constructive, and vice versa. So he had two slightly different histories interfering. BOTH histories had to exist to get the result John Yukich observed, so at least two slightly different parallel universes exist. John Yukich is now a professor of physics at Davidson University in North Carolina.
Personally I've viewed the multi-universe notions as redundant, unnecessary, unproven and unprovable, so what Joe Rudman wrote here was eye opening. Still, this micro result does not infer that an infinity of macro universes exist.

Bruce
Just as zero is not equal to infinity, everything coming from nothing is illogical.

User avatar
Chris Peterson
Abominable Snowman
Posts: 18113
Joined: Wed Jan 31, 2007 11:13 pm
Location: Guffey, Colorado, USA
Contact:

Re: APOD: Split the Universe (2017 Apr 01)

Post by Chris Peterson » Thu Apr 06, 2017 2:50 pm

BDanielMayfield wrote:
Joe Rudmin wrote:The Bell Inequality distinguishes between deterministic and indeterministic universes. Einstein-Podolosky-Rosen (EPR) experiments, which all use the Bell inequality, consistently show that we live in an indeterministic universe.

I like this, and it seems most logical too, for both micro and macro things. Just as the time when an individual unstable atom will decay cannot be precisely predicted, nether can the exact actions of people be predicted.
However, indeterminate does not mean not determined. The entire state of the Universe from its beginning to infinitely far in the future may be determined, set in stone, and still entirely indeterminate.
Chris

*****************************************
Chris L Peterson
Cloudbait Observatory
https://www.cloudbait.com

BDanielMayfield
Don't bring me down
Posts: 2524
Joined: Thu Aug 02, 2012 11:24 am
AKA: Bruce
Location: East Idaho

Re: APOD: Split the Universe (2017 Apr 01)

Post by BDanielMayfield » Thu Apr 06, 2017 3:14 pm

Chris Peterson wrote:
BDanielMayfield wrote:Just as the time when an individual unstable atom will decay cannot be precisely predicted, nether can the exact actions of people be predicted.
However, indeterminate does not mean not determined. The entire state of the Universe from its beginning to infinitely far in the future may be determined, set in stone, and still entirely indeterminate.
I can readily accept that. Many divergent paths can eventually converge to the same outcome.

But let's focus on the here and now. Each of us as thinking organisms exercise free will all the time whenever we make decisions. We are not like preprogrammed robots hiding in organic bodies. Otherwise, concepts like freedom would be mere illusions.

Bruce
Just as zero is not equal to infinity, everything coming from nothing is illogical.

User avatar
Chris Peterson
Abominable Snowman
Posts: 18113
Joined: Wed Jan 31, 2007 11:13 pm
Location: Guffey, Colorado, USA
Contact:

Re: APOD: Split the Universe (2017 Apr 01)

Post by Chris Peterson » Thu Apr 06, 2017 3:26 pm

BDanielMayfield wrote:
Chris Peterson wrote:
BDanielMayfield wrote:Just as the time when an individual unstable atom will decay cannot be precisely predicted, nether can the exact actions of people be predicted.
However, indeterminate does not mean not determined. The entire state of the Universe from its beginning to infinitely far in the future may be determined, set in stone, and still entirely indeterminate.
I can readily accept that. Many divergent paths can eventually converge to the same outcome.
Perhaps, but that's not what I meant. I meant that the Universe in 4 dimensions could be static from an "outside" view, but completely unpredictable from any point along any path. More formally, that every worldline exists from the moment of its creation to the end of time, but from any point along the worldline it is impossible to predict what the future portion of that line looks like. Determined, but not deterministic.
But let's focus on the here and now. Each of us as thinking organisms exercise free will all the time whenever we make decisions. We are not like preprogrammed robots hiding in organic bodies. Otherwise, concepts like freedom would be mere illusions.
I've never encountered a definition of "free will" that was sufficiently clear or coherent for me to make sense of what an assertion like the one you make here even means.
Chris

*****************************************
Chris L Peterson
Cloudbait Observatory
https://www.cloudbait.com

Post Reply