|
|
|
 |

March 20th, 2003, 06:05 PM
|
 |
Captain
|
|
Join Date: Jan 2001
Location: Chandler, AZ, USA
Posts: 921
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Re: [OT] Plato\'s Pub and Philosophical Society
It finally all came together for me, and now I understand. We are all doomed to play SEIV forever (or at least until SEV comes out) because of all of the events that have happened in the past. We have no choice, it is simply the way it is. So if someone gives any of us grief for playing the game too much, we should just respond that you can't fight nature, that this is the way things must be. I think I like this theory.... 
__________________
My SEIV Code: L++++ GdY $ Fr+++ C-- S* T? Sf Tcp A%% M+++ MpT RV Pw+ Fq Nd- RP+ G++ Au+ Mm++(--)
Ursoids of the Galaxy, unite!
|

March 20th, 2003, 06:16 PM
|
 |
Shrapnel Fanatic
|
|
Join Date: Feb 2001
Location: Waterloo, Ontario, Canada
Posts: 11,451
Thanks: 1
Thanked 4 Times in 4 Posts
|
|
Re: [OT] Plato\'s Pub and Philosophical Society
How about this:
Is it possible for a computer program (such as an AI routine) to have free will?
If so, a copy or close variant of that program, running in an organic neural net/brain would also provide free will.
__________________
Things you want:
|

March 20th, 2003, 06:23 PM
|
 |
General
|
|
Join Date: Mar 2001
Location: UK
Posts: 4,245
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Re: [OT] Plato\'s Pub and Philosophical Society
Quote:
Is it possible for a computer program (such as an AI routine) to have free will?
|
Quite probably. All that mucking about with electrons that goes on inside circuitry probably involves QM.
You should have a read of Rob Schrab's Scud: Dispoible Assassin. It's a great read and there is a really nice concept about all of human history being predetermined by God, but then a Robot (without sould and therefore unconstrained by Destiny) messes everything up.
Not the same thing at all, I know, but it made me think of it and it's a damned good comic.
|

March 20th, 2003, 06:38 PM
|
 |
Shrapnel Fanatic
|
|
Join Date: Feb 2001
Location: Waterloo, Ontario, Canada
Posts: 11,451
Thanks: 1
Thanked 4 Times in 4 Posts
|
|
Re: [OT] Plato\'s Pub and Philosophical Society
Quote:
Quite probably. All that mucking about with electrons that goes on inside circuitry probably involves QM
|
How do you mean? By generating errors? They're pretty rare, except when using windows, and that's not due to QM, its due to QA.
I think we could also use a good definition of Free Will, and what it means to say one thing has it while another dosen't.
If an AI compares random numbers to decide whether to go left or right, is that free will? It will be chaotic and unpredictable...
__________________
Things you want:
|

March 20th, 2003, 07:15 PM
|
 |
General
|
|
Join Date: Mar 2001
Location: UK
Posts: 4,245
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Re: [OT] Plato\'s Pub and Philosophical Society
Quote:
If an AI compares random numbers to decide whether to go left or right, is that free will? It will be chaotic and unpredictable...
|
Apply a force to a ball on a pool table- if the force and direction and locations of all the balls are known, the exact consequences can be predicted and known by applying a series of known physical laws. Once the force is applied, the rest of their movements could be said to be pre-determined by the laws of physics. Cause and effect.
Now consider that not only pool balls are subject to physical laws. People, cars, planets, atoms, brain cells... these are all made of matter and subject to the laws of physics. Therefore, if you apply a force to a car and all the variables are known, then the end result can be predicted. The implications of this are scary, and it's called determinism:
Determinism goes beyond "you're hungry and people eat when they are hungry, so I can predict that you will eat." It's more like "your decision to eat or not eat depends upon an immensely complex balance of psychological and physiological factors, all of which can be theoretically reduced to a bunch of chemicals and electrical impulse flying about in your brain and body."
Chemicals and impulses that are subject to the laws of physics, just like the pool table.
Imagine the universe as a massive, four (more?) dimensional pool table, with every one of the squillions of most fundamental subatomic particles as a pool ball. At the very beginning of the universe, in the instant that the big bang occurs, a force is applied. The qualities of that force set the entire universe in motion in a direction determined by the qualities (power, direction etc) of the force. Every movement of every atom from that moment until now, including the atoms in your brain clustered together right now in the right pattern to form the decision "I will eat" or "I will not eat"... every single movement in the entire universe is predetermined in just the same way the the balls on the pool table were. you have no free will. Your decisions are just cause-and-effect results of physical phenomena within your brain, which in turn are only the way they are because they were put there by other cause and effect reactions, and so on right to the big bang.
Now quantum mechanics provides us with a get out clause. QM implies that there are some things going on in the universe which don't necessarily have anything to do with cause and effect. They do not follow predictable laws, and there's room for free will again, although it implies some very wierd and unscientific things about the nature of the mind.
Anyway, I gotta go...
|

March 20th, 2003, 07:38 PM
|
 |
Major General
|
|
Join Date: Oct 2002
Posts: 2,174
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Re: [OT] Plato\'s Pub and Philosophical Society
Quote:
Originally posted by Suicide Junkie:
If an AI compares random numbers to decide whether to go left or right, is that free will? It will be chaotic and unpredictable...
|
As a computer programming student, I can tell you it is extremely difficult to get a computer to produce truly random numbers. It is possible, mind you - it takes hardware that produces truly random input, such as a noisy diode or a human user; sometimes a clever programmer will use the processor itself as a truly random number generator by using the clock drift - however, those are very rarely used. What is normally produced is pseudorandom numbers. These numbers come out of simple equations, where the routine goes something like this (I may have my suntax a bit off):
double Random(Double *seed){
double r = 1.73658965335795;
double d = 4.56891247479574;
*seed = r * (*seed) - d * (*seed) * (*seed)
return *seed;
}
While not truly random, these types of routines produce numbers that are scarecly predictable.
__________________
Of course, by the time I finish this post, it will already be obsolete. C'est la vie.
|

March 20th, 2003, 07:59 PM
|
 |
Shrapnel Fanatic
|
|
Join Date: Feb 2001
Location: Waterloo, Ontario, Canada
Posts: 11,451
Thanks: 1
Thanked 4 Times in 4 Posts
|
|
Re: [OT] Plato\'s Pub and Philosophical Society
The least significant bits from a microphone input (even if the microphone isn't plugged in) should also do fairly well, I hear.
__________________
Things you want:
|
Thread Tools |
|
Display Modes |
Hybrid Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is On
|
|
|
|
|