Skwim
Veteran Member
In main for shunyadragon's benefitGood grief. I said I should have left the term "hard" out of my statement to avoid just this type of confusion and needless semantics. Well needless or not you let the semantics fly.
.
Welcome to Religious Forums, a friendly forum to discuss all religions in a friendly surrounding.
Your voice is missing! You will need to register to get access to the following site features:We hope to see you as a part of our community soon!
In main for shunyadragon's benefitGood grief. I said I should have left the term "hard" out of my statement to avoid just this type of confusion and needless semantics. Well needless or not you let the semantics fly.
He may have conflated Sagan with Neil deGrasse Tyson. Sagan was on the original Cosmos, Neil on the reboot. Neil was on the Big Bang Theory.Sagan? I don't remember. Stephen Hawking was.
Okay: Big Bang Theory, TV show, began in 2007.
Sagan died back in 1996. As far as I know, he did not travel into the future...
So definitively, no.
I don't know what role your distinction would have in our debate but do as you wish.In main for shunyadragon's benefit
.
You were in math club before FM???
Is radioactive decay a quantum effect? If yes, then is the half life prediction not non random?
No, but long before personal computers. Before hand held calculators too.
I don't think that is what compatibalism means, though I used to because it's real meaning is so stupid (and I hope your not referring to Daniel Dennett). I believe compatibalism means that even though there is no such thing as freewill (their position not mine) that things like punishment for crimes (accountability) are compatible with it.
However were getting the cart before the horse, lets see if freewill exists or not first. Every day in virtually every life there are thousands of examples of freewill. Every time my mind intends to do something, I usually have the capacity to make that desire become actualized. What I mean is this. If a thought pops in my head that I want to make a sandwich and if only determinism is true I stand similar chances of doing anything but making a sandwich. If the only causes are atoms in motion then my next act might as well be to jump in the kitchen sink, kick the dog, build a unicycle, or see how many marbles I can fit in my mouth. Atoms in motion don't care if I get a sandwich to eat but my freewill does. So for every desire out there that is responded to by a fulfillment of that desire it must be an act of freewill, not unintentional atoms bouncing off one another. First off forget whether you agree or not do you at least understand my argument because if you do then you are constantly surrounded by trillions of actions which freewill (agent causation) is by far the best explanation. You can't possibly think that your ability to respond to me on topic and in appropriate time is the result of blind forces that began trillions of years ago which are so obliging as to let us have a conversation even though nature has no desires or intentions at all.
Fred Hoyle
(British astrophysicist)
“A common sense interpretation of the facts suggests that a superintellect has monkeyed with physics, as well as with chemistry and biology, and that there are no blind forces worth speaking about in nature. The numbers one calculates from the facts seem to me so overwhelming as to put this conclusion almost beyond question.”
Y-Origins.com - Science and the Origin of Life
Apparently intent is even blindingly obvious in pure sterile science.
When I went to college, I was given a *slide rule* as a parting gift. And found it useful for classes.
When I was at Oklahoma State in 1968 all the engineering students had slide rules hanging from their belt. By 1970 they all had Texas Instrument calculators.
And those calculators probably could add, subtract, multiply, and divide.
I think the timing is strange, though. The first TI calculator was 1971, I think. Texas Instruments
When I went to college, I was given a *slide rule* as a parting gift. And found it useful for classes.
Are you sure that it was by 1970? That sounds a little early to me. I had to check it out. in 1972 TI introduced this beast:When I was at Oklahoma State in 1968 all the engineering students had slide rules hanging from their belt. By 1970 they all had Texas Instrument calculators.
Good idea. Let me open the batting, then.
To me, randomness is a total absence of order or predictability.
Conversely, non-random systems or occurrences have some measure of order or predictability.
The presence of order does not, it should be needless to say, necessarily signify purpose or intelligent agency. The high degree of order in a crystalline solid is a case in point. Such ordered structures can appear spontaneously, for instance when water freezes on a cold day.
The foregoing is from a scientific perspective. There are however many religious believers who feel, aesthetically, that the presence of order in the cosmos may point to the existence of God. Einstein, indeed, came close to identifying the order itself with God - a sort of pantheistic outlook.
In this sense, then, randomness can come to be seen as the absence of the guiding hand of God.
I would not subscribe to that view, knowing as I do some kinetic theory and statistical thermodynamics. To me, randomness and order dance together, to make the world we know.
See posts 3, 6, 21, 22 and subsequently.So, if I throw a coin 1 million times and I predict that about 50% of the outoomes are head, and I find it to be a pretty good prediction, does that entail that the experiment is not random?
I ask because I think that what you consider not random does not exist. What we see, as solid and predictable as it might seem, is just the average of many somethings which are individually inherently random.
Ciao
- viole
See posts 3, 6, 21, 22 and subsequently.
Ciao.
The concept of randomness comes up pretty frequently in our discussions. In particular, I have seen frequent complaints concerning the development of order out of 'randomness'. This shows up in discussion of evolution (mutations being random), quantum mechanics (quantum events being random), and cosmology (matter interacting randomly).
Often, randomness is conflated with 'accidental' and contrasted with 'intelligently produced'.
I'd like a discussion/debate about the meaning of randomness, its role in our beliefs, the contrast with causality, the issue of 'accident', and the role of 'intelligence' as opposed to 'randomness'.
The problem isn't the seed. The problem is that the algorithm that does the RND function does not really generate a string of truly random numbers. For the purposes of any commercial application like accounting or inventory control, the number generated was more than sufficient.Yep. I was part of a 17 year project in computing, and we required random numbers for some of our calculations.
We were using compiled BASIC (with a numerical library to take full advantage of the numerical co-processor...yes, that's how old this was. 1981. )
The BASIC library had a RND function-- but was absolutely repeatable, if you didn't re-seed the RND function. The description explained how to re-seed the calculation. Obviously, it was simply a complex mathematical equation, and selected a section of the answer for the "random number".
My favorite solution to this? I build it into the start-up library that initialized all the shared data files the programs used (they would run each other, to create a seamless whole, but each was independent in a way. Data/variable values were shared via binary files).
Intel computers used an interesting clock: the number of miliseconds counting forward, from 1978. At least that is what my memory recalls. It may have been earlier? Some year in the 1970's, for sure. That was ZERO for the CPU. The number increased with each clock-tick. These ran at 4.77 kiloherz, if memory serves. So you knew the correct "time" by reading this upwards-counting register.
Since this number was always different, every time the CPU was initialized? Even if you did not set the clock to the current time, the odds of getting the exact same number was pretty slim... so I'd pull the time of day, and using that, I'd query the raw data from the time-register-- the time of day selected which section of the raw number I'd use (if I remember, it was a 16 digit long integer) Then, I'd feed that into the RND function as a new seed.
A Kludge? Absolutely! But not terrible as Random Numbers go, due to using miliseconds, even if then computer booted at 8 am every day, and the time wasn't set, there'd be a minor variation of the milisecond value from day to day...
And yet, many prefer the "inexactness" of analog music as can be seen by the resurgence of vinyl.In theory, Analog Computer would have the potential to store many-many times the raw information that a Digigal one ever could.
Think: You could get a whole music album (roughly 40-45 minutes of uncompressed information) onto a fairly short cassette tape. But, to store the same length in digital form? (if uncompressed), you'd need about 300-400 megabytes of digital memory. The information density of analog is always many times that of digital.
But. And it's a BIG but: What is the quality of retrieval between the two formats?
With digital, if you include strong error correction? You can expect 100% perfection, every time, until the media is destroyed.
With analog? How do you tell if the information has degraded? How do you separate the noise from data?
Analog works very well, if the media is high quality: Using an actual violin, and a master musician, you can get prefect recall of the information (a piece of sheet music). Or not-- is there noise in the room? Is the violin slightly out of tune? Etc.
Analog also works, if the information has a high tolerance of "sloppy", i.e. audio music-- humans are very good at filtering noise.
Bottom line: Digital is much-much easier to differentiate nose from information.
For example: if you store the information as electrical pulses? Say, you define ZERO as negative 5 volts, and ONE as positive 5 volts, and further define each value as plus or minus 4 volts? Any value between +1v and +9v, is a ONE, and any value between -1v and -9v is a ZERO and all other values are noise: discard.
To increase the reliability? You can add in commands to re-send corrupted data, as needed. This is exactly how the very chaotic internet functions: It has many error-correcting engines built right in. Multiple ID values is one (adding redundancy), the ability to request a re-send of corrupted data is another. Tags which indicate a mathematical formalization of the data packet (as good are corrupt), to trigger a re-send, etc.
How would you do this using Analog? Not easy: just ask Dolby Labs.
The half-life is the *average* of the individual random decays. As I have noted before, we can have random events that give predictable averages.
True randomness likely does not exist