Register | Sign In


Understanding through Discussion


EvC Forum active members: 64 (9164 total)
3 online now:
Newest Member: ChatGPT
Post Volume: Total: 916,890 Year: 4,147/9,624 Month: 1,018/974 Week: 345/286 Day: 1/65 Hour: 1/0


Thread  Details

Email This Thread
Newer Topic | Older Topic
  
Author Topic:   A thought on Intelligence behind Design
Rrhain
Member
Posts: 6351
From: San Diego, CA, USA
Joined: 05-03-2003


Message 22 of 261 (43201)
06-17-2003 8:20 PM
Reply to: Message 8 by Warren
06-17-2003 3:32 PM


Re: A thought on Intelligence behind Design
Warren writes:
quote:
William Dembski<< No genetic algorithm or evolutionary computation has designed a complex, multipart, functionally integrated, irreducibly complex system without stacking the deck by incorporating the very solution that was supposed to be attained from scratch.>>
Dembski's wrong.
Take a look at the latest Boeing 777. It was completely designed by computer. No human knows how it works. And given the extensive use of robotics in manufacturing these days, a goodly portion of the planes weren't even made by humans. Seems we've got a completely artificial development process going here.
I love the claim of "stacking the deck." It implies that there is a conspiracy going on in the computer science field to keep programmers employed. Why on earth would somebody write a program to tell them what they already knew? That is, if your boss comes up to you and asks you what 2 + 2 is and you know it's 4, do you really think your boss is going to accept you taking a month to develop a computer program with all the bells and whistles that will tell you that 2 + 2 = 4? Especially when it's telling you that it's 4 not by actually performing the arithmetic but because you "stacked the deck" so that it simply spits out "4" whenever it sees the question, "What is 2 + 2?"
The reason genetic algorithms and evolutionary programming work is precisely because the deck is not stacked. Dembski seems to think that providing constraints such as the way fluid dynamics works or gravity or structural coefficients is somehow forcing the specific answer to come out.
Indeed...if we were to run these programs without those constraints, we wouldn't get the results that we get (indeed...the plans of the Boeing 777 were airplane-shape.) But then again, if we didn't tell the system about gravity, we wouldn't get a result that worked in an environment that has gravity. The reason a plane has wings is because there is gravity and wings provide lift to counteract the force of gravity. Remove gravity and you have little reason to have wings. In fact, they would become a liability as they would provide lift when you don't need it and you'd veer off course.
------------------
Rrhain
WWJD? JWRTFM!

This message is a reply to:
 Message 8 by Warren, posted 06-17-2003 3:32 PM Warren has replied

Replies to this message:
 Message 24 by Warren, posted 06-17-2003 8:33 PM Rrhain has replied
 Message 26 by NosyNed, posted 06-17-2003 8:43 PM Rrhain has replied

  
Rrhain
Member
Posts: 6351
From: San Diego, CA, USA
Joined: 05-03-2003


Message 29 of 261 (43216)
06-17-2003 8:55 PM
Reply to: Message 24 by Warren
06-17-2003 8:33 PM


Re: A thought on Intelligence behind Design
Warren responds to me:
quote:
quote:
Take a look at the latest Boeing 777. It was completely designed by computer.
Yeah, ID had nothing to do with it. Give me a break!
I am.
Are you saying the computer was intelligent?
Or perhaps you're saying that the design for the Boeing 777 was "stacked" inside the program that created it and the computer programmers that put together the design program were just dicking around for all that time and sucking money out of Boeing in a conspiracy to keep themselves employed? "Pssst! Joe! I've got this great design for a new airplane. Yeah...down to the last wire. The bosses want a new plane but if we give them the design right now, we'll be out of a job in two weeks! Can you come up with a fancy program that'll spit this design out after taking a long time looking like it's doing calculations? Great."
I recall an assignment in my computer science class from my undergrad days. It was to develop a program that found a knight's tour of a chessboard and then indicated whether or not it was cyclic. That is, given an input of a starting square and using only moves made by a knight, attempt to find a path that lands on every square exactly once and then see if you could land on the starting square from the ending square.
So the first thing I do is model the chessboard. And I notice that not all squares on a chessboard are created equal. For example, the corner squares only have two possible moves for a knight. The further you get into the middle of the board, the more freedom of movement you have. Thus, to save time, I'll restrict movements based upon physical possibility so that the program doesn't try to move the knight off the board.
But in doing so, it occurs to me that certain moves might be more likely to result in a knight's tour than others. Through some practice on my own, I happen to find a cyclic knight's tour of the chessboard and thus, I could constrain the results of all the squares to just two possible moves...one of which is not allowed since it's moving to the square you just came from.
And thus, the program I turned in truly was a "stacked" program. No matter where you started on the chessboard, my program found a cyclic knight's tour.
The same cyclic knight's tour.
Every time.
I got an A because the assignment didn't say that you had to develop an algorithm that would find the tour on its own, though many people wrote just such a program. You'd place the knight on a space and the program would systematically start moving the piece around, keeping track of the resultant path and if it found that it got stuck with no more moves but still not a complete path, it would backtrack to a spot where it had another choice and continue on the new path until it found a tour.
Now, is this program "stacked"? I'd say no, though I'd point out that there are two possibilities for such a program.
One is that it has a rule for how to go about finding paths. That is, when it lands on a square, it might always do an "up two, right one" move first and if that move is not allowed, do a "right two, up one" move, and so on around the square, trying to find a legitimate move.
Such a program will always find you the same tour given a specific starting square. Why? Because it has a methodical approach that is always used in exactly the same way. There is no randomness involved. However, this program is not "stacked" because the tour you find is dependent upon where you start. My program always gave you the same tour no matter where you started. The choice of square, since the tour returned was cyclic, simply noted where on the cycle you started, not which cycle you found.
But there is a way to have the program find unique tours even for identical start positions: Have it randomly choose squares. That is, instead of having it always start by trying the "up two, right one" move, have it randomly choose one of the eight possible moves until it finds one that it can use.
Since the knight is moving randomly (though constrained by the rules that no square be landed on more than once and not moving the knight off the board), you can find multiple tours of the board given a single starting position.
In neither case does the program know what the tour is like it did in my program, though. The program is figuring it out for itself. The only thing the program knows how to do is move the knight and how to keep track of which squares have already been landed on.
So tell me, Warren: How do those programs count as having "stacked the deck"? I thoroughly admit that my program was stacked. If the boss had come to me and asked me to find a cyclic knight's tour of a chessboard, I should have simply written down the path that I found and turned it in. For me to spend another three days writing a program to spit out what I had already found would be a huge waste of time.
------------------
Rrhain
WWJD? JWRTFM!

This message is a reply to:
 Message 24 by Warren, posted 06-17-2003 8:33 PM Warren has not replied

  
Rrhain
Member
Posts: 6351
From: San Diego, CA, USA
Joined: 05-03-2003


Message 32 of 261 (43219)
06-17-2003 9:00 PM
Reply to: Message 26 by NosyNed
06-17-2003 8:43 PM


Re: A thought on Intelligence behind Design
NosyNed responds to me:
quote:
quote:
Take a look at the latest Boeing 777. It was completely designed by computer. No human knows how it works. And given the extensive use of robotics in manufacturing these days, a goodly portion of the planes weren't even made by humans. Seems we've got a completely artificial development process going here.
This is not an example of a genetic algorithms. The design is a human one aided by tools but not replaced by tools as is the case with genetic algorithms.
Hmmm...I was under the impression that Boeing used genetic algorithms to design the new 777. It wasn't that a drafter sat down and used AutoCAD to design the plane. It was that the system came up with a set of genes for airplanes, let the computer run, and out popped a design.
That's what I meant when I said "no human knows how it works." No human designed it.
Again, I was under the impression that they had used genetic algorithms. Is that impression mistaken?
------------------
Rrhain
WWJD? JWRTFM!

This message is a reply to:
 Message 26 by NosyNed, posted 06-17-2003 8:43 PM NosyNed has replied

Replies to this message:
 Message 39 by NosyNed, posted 06-17-2003 9:37 PM Rrhain has not replied

  
Rrhain
Member
Posts: 6351
From: San Diego, CA, USA
Joined: 05-03-2003


Message 35 of 261 (43223)
06-17-2003 9:09 PM
Reply to: Message 27 by mike the wiz
06-17-2003 8:46 PM


mike the wiz writes:
quote:
the universe and earth is so impressive , so brilliant ,so awesome i just think it is logical to assume there is intelligence behind it,is that really so bad ?
If the standard of "good" and "bad" is related to the question of whether or not we have evidence to support the claim, then yes, it is bad.
There are many people whose standard of good/bad is that a painful truth is much preffered to a comfortable lie.
quote:
and why must everything have to be tested by science.science is not the meaning of life,just the tool used to give us life.
Not everything is tested by science and nobody in science claims that it is the meaning of life.
F'rinstance, science can tell you a lot about the properties of a sound wave like its frequencies, its harmonics, the decibel level, how far it will travel in the air, etc., etc.
It cannot tell you if it is music.
The problem arises not because of science but because of faith. If you put your faith in things being a certain way and those things are amenable to scientific inquiry, then you may find yourself in a crisis of faith when we find out that they don't behave in the way your faith demands that they do. If your faith requires a flat earth, it isn't science's fault that we determined the earth is round. If your faith requires the earth to be the center of the universe, it isn't science's fault that we determined it isn't...that it isn't even the center of the solar system.
Religions have managed to survive these revelations that were once considered so important. Why should any other scientific discovery such as evolution be any different?
How does evolution change the message of your god? How does an ancient universe and an ancient earth that developed through natural processes change the relationship you have with your god?
------------------
Rrhain
WWJD? JWRTFM!

This message is a reply to:
 Message 27 by mike the wiz, posted 06-17-2003 8:46 PM mike the wiz has replied

Replies to this message:
 Message 37 by mike the wiz, posted 06-17-2003 9:16 PM Rrhain has replied

  
Rrhain
Member
Posts: 6351
From: San Diego, CA, USA
Joined: 05-03-2003


Message 38 of 261 (43233)
06-17-2003 9:33 PM
Reply to: Message 37 by mike the wiz
06-17-2003 9:16 PM


mike the wiz responds to me:
quote:
quote:
How does evolution change the message of your god? How does an ancient universe and an ancient earth that developed through natural processes change the relationship you have with your god?
it does not ,nor does it come against my faith,
Then why your cry to the universe of why does everything have to be tested by science?
If nothing that science discovers can affect your faith, then why are you picking on science? Why are you behaving as if science is trying to destroy your faith? Why are you behaving as if you are resentful of science?
quote:
it is just a theory where as the things that were mentioned by God ,the earth,the universe,his message to us,are fact.
Methinks you don't know what a theory is. From Merriam-Webster:
1 : the analysis of a set of facts in their relation to one another
2 : abstract thought : SPECULATION
3 : the general or abstract principles of a body of fact, a science, or an art
4 a : a belief, policy, or procedure proposed or followed as the basis of action b : an ideal or hypothetical set of facts, principles, or circumstances -- often used in the phrase in theory
5 : a plausible or scientifically acceptable general principle or body of principles offered to explain phenomena
6 a : a hypothesis assumed for the sake of argument or investigation b : an unproved assumption : CONJECTURE c : a body of theorems presenting a concise systematic view of a subject
You seem to think that when science uses the word "theory," it means something along the lines of definitions 2, 4, 6a, or 6b.
Instead, science means definitions 1, 3, 5, and 6c.
Do you doubt the germ "theory" of disease? Even though it's "just a theory"? What about the photon "theory" of light? Do you think that you just might not plummet to the ground if you were to jump off the Empire State Building just because it's gravitational "theory"? Is it just a coincidence that atomic clocks work because quantum mechanics is "only a theory"?
In science, a theory is an analysis of a set of facts. You cannot have a theory without a fact to back it up. When I drop a ball, it falls to the ground. That's a fact. We happen to call the force that pulls it down "gravity." We then develop theories about gravity to explain how the ball falls. Thus, gravity is both a fact and a theory.
Similarly, if we watch organisms over time, they change. That's a fact. We happen to call this change "evolution." We then develop theories about evolution to explain how it happens. Thus, evolution is both a fact and a theory.
quote:
quote:
Not everything is tested by science and nobody in science claims that it is the meaning of life.
It cannot tell you if it is music.
so why then test the soundwaves when you can listen to the music?
Because I've got to get the sound to come out of the speakers somehow. And if I'm planning a concert that is going to be miked, it'd be nice to know how many speakers I'll need, where they should be placed, how much amplification to use, etc., etc. Knowing that this particular piece of music is heavier in the lower frequencies while the piece after that is more concentrated in the higher ones will affect my work.
quote:
but what is wrong with the logic i was talking about,and why am i so wrong in believing in the Creator?
Nobody said you were.
What was said was that you were wrong to insist that your creator did something that was apparently not done.
Did I have anything to do with what you ate for breakfast? Did I plant it? Grow it? Harvest it? Transport it? Process it? Package it? Ship it? Advertise it? Market it? Sell it? Purchase it? Prepare it? Serve it? Feed it?
No?
Does that mean I don't exist?
------------------
Rrhain
WWJD? JWRTFM!

This message is a reply to:
 Message 37 by mike the wiz, posted 06-17-2003 9:16 PM mike the wiz has not replied

  
Rrhain
Member
Posts: 6351
From: San Diego, CA, USA
Joined: 05-03-2003


Message 161 of 261 (46485)
07-19-2003 3:31 AM
Reply to: Message 160 by Warren
07-19-2003 12:51 AM


Re: Intelligent design
Warren quotes Mike Gene:
quote:
Take origin of life research. Scientists do not look for things that could not be explained by teleologists. They are not looking for phenomena that rule out telic causes, therefore rule in non-telic causes. On the contrary, they begin with squishy, vague scenarios about how something might have happened and then see if something in the lab or nature can be fitted into such a scenario. What becomes important here is the development of a track record and a scenario that gets less and less squishy. I see no reason why teleologists cannot likewise adopt this approach.
But that's precisely the problem: They don't. And from what I can tell, the reason why is because it can't be done.
What does "design" look like? Given that an sufficiently advanced designer can make anything, how does one distinguish things that are designed from things that aren't?
For example, suppose I were to take a handful of change and toss it on the ground. I then take an identical handful of change and meticulously place the coins in the same arrangement. Do you think that you could be able to tell the difference between them? Which one was caused by physics and which one was caused by design?
Of course, that brings up a fundamental question: Is there anything that happens on its own?
That is, if I take a handful of change and toss it on the ground, do the coins land the way they do all on their own under the effect of gravity or does god come down and personally, deliberately, and consciously place those coins in their final positions?
------------------
Rrhain
WWJD? JWRTFM!

This message is a reply to:
 Message 160 by Warren, posted 07-19-2003 12:51 AM Warren has not replied

  
Rrhain
Member
Posts: 6351
From: San Diego, CA, USA
Joined: 05-03-2003


Message 215 of 261 (48648)
08-04-2003 4:28 PM
Reply to: Message 213 by Barryven
08-04-2003 2:59 PM


Re: I Prefer Discovered Principles
Barryven writes:
quote:
Neither is the principle of open minded, questioning and investigation lacking
It's good to have an open mind...
...but not so open that your brain falls out.
------------------
Rrhain
WWJD? JWRTFM!

This message is a reply to:
 Message 213 by Barryven, posted 08-04-2003 2:59 PM Barryven has not replied

  
Newer Topic | Older Topic
Jump to:


Copyright 2001-2023 by EvC Forum, All Rights Reserved

™ Version 4.2
Innovative software from Qwixotic © 2024