Jump to content

Greg H.

Senior Members
  • Posts

    1266
  • Joined

  • Last visited

Posts posted by Greg H.

  1. A ball bounces more slowly on the spaceship than on Earth say.

     

    From whose frame of reference? The ship or the Earth?

    You have to get away from this idea that there is some universally absolute frame of reference. It doesn't exist.

     

    That's just the point...... in one's own frame of reference it isn't -just look at the clocks. A second on the spaceship takes longer to pass = slow motion in one's own FOR.

    That isn't the point. The point is that in your own frame of reference you will never notice a difference, no matter how fast you're accelerating moving. Only observers outside your frame of reference will see any difference at all.

     

    Consider this example (hopefully it helps):

     

    Two astronauts (Harry and Bob) are floating in an otherwise featureless void - no stars, no galaxies, no planets. They pass each other at 1/2 the speed of light, and measure that the other's space suit clock is running slow.

     

    So which astronaut is accelerating moving? There's no way to tell*, and in fact, it doesn't matter. The laws of physics don't care which one of them is actually accelerating moving Harry will witness Bob's clock run slow, and Bob will witness just the opposite.

     

    All that matters is your frame of reference. If you were perched on Bob's shoulders (and thereby shared his Frame of Reference), you would observe the exact same effects that Bob does - his clock runs normally, while Harry's appears to run slow.

     

    (*In actual fact there probably is a way to tell - rocket exhaust, energy usage or some such, but for the purposes of the example, it doesn't matter).

    Edit to fix some terminology problems on my end. Thanks guys.

  2. Now if you were looking at replacing a man whose ideas you didn't like but you knew his replacement, by his own words, was either stupid or a liar which one would you choose?

     

    Better the devil you know is, I believe, how the saying goes.

  3. ok, I'm mixing chile powders. Would this same formula work?

     

     

     

     

     

     

     

     

    Why would you expect it to? More importantly why would you resurrect a 6 year old thread to ask a nonsense question about a completely different topic? Isn't it easy enough to start your own nonsense thread?

  4. Take two caesium clocks, synchronise them and put one in the spacecraft travelling at the near speed of light and one at its base on Earth.

     

    The clock on the spaceship will run slow.

     

    From the frame of reference of Earth, yes, the ship's clock will run slow.

    From the frame of reference of someone on the ship, no, the ship's clock will run at normal speed, and the Earth based clock will run slow.

     

     

    Frame of reference is everything.

  5. What is the benefit of having a telescope on the moon, rather than just in orbit?

     

    I checked the article (glanced over it), but it seems to me that the coolness of it is the main argument. It's a challenge with a prize (money).

     

    I don't know if there's any astronomical benefit (i.e. I don't know that it will take any better pictures than a telescope in orbit) but I think there's something to be said for being able to plop a permanent fixed "installation" on another stellar body. There's a lot of engineering challenges that need to be addressed in this deployment, and I think that's the real benefit to the operation (aside from the cash prize).

     

    If we can pull of landing something as delicate as a telescope on another orbiting body in the solar system, then what can we achieve next?

     

    Edit:

    Here's an older article I found that lists at least one benefit where radio astronomy is concerned:

     

    http://blogearth.wor...pe-on-the-moon/

     

    A [radio] telescope on the dark side of the Moon would be permanently out of the reach of all this [radio] disturbance [from the surface of the Earth], giving crystal clear views of our Universe.

  6. Alfred001, if you think your doctor made a mistake, go see another one. You can call them on the phone and explain why you do not want to go to your normal doctor.

     

    If you can explain all your problems in a few lines of text on a forum, then you can also summarize it to a doctor. It's your own health... don't go online on some forum asking strangers how to fix it.

     

    [edit] Arete, I think you put in enough disclaimers to get away with it. None of us is qualified to make any diagnosis, or to prescribe a cure... but if our OP wants a guess, that's what (s)he gets. A guess.

     

    As an aside, some hospitals (or at least the ones in my area of the US) have a dial a nurse service that will connect you with a Registered Nurse. You can explain your situation and they can (usually) tell you if you need to head to your nearest doctor's office for another visit immediately or not.

     

    As the previous two posters have said though, if you have concerns about your medical treatments, get a second medical opinion. You are your own best advocate for your medical care - you know best what feels normal with your body and what doesn't. If you have doubts, act on them sooner rather than later.

  7. Off the cuff I would say

     

    
    public static void main(String[] args) {
    	String[] str1={"One"};
    	String[] str2={"One","Two"};
    	String[] str3={"One","Two", "Three"};
    	String[] str4={"One","Two", "Three", "Four"};
    	String[] str5={"One","Two", "Three", "Four","Five"};
    
    	ArrayList<String[]> al=new ArrayList<String[]>();
    
    	al.add(str1);
    	al.add(str2);
    	al.add(str3);
    	al.add(str4);
    	al.add(str5);
    
    	String[] array = (String[]) al.get(2);
    	System.out.print(array[2]);
    
    }
    
    
    Str 3, position 3 :Three
    
    

     

    If you wanted to iterate over all of them you could do something like this:

    
    public static void main(String[] args) {
    	String[] str1={"One"};
    	String[] str2={"One","Two"};
    	String[] str3={"One","Two", "Three"};
    	String[] str4={"One","Two", "Three", "Four"};
    	String[] str5={"One","Two", "Three", "Four","Five"};
    
    	ArrayList<String[]> al=new ArrayList<String[]>();
    
    	al.add(str1);
    	al.add(str2);
    	al.add(str3);
    	al.add(str4);
    	al.add(str5);
    
    	Iterator itr = al.iterator();
    	while(itr.hasNext()){
    		String[] array = (String[]) itr.next();
    		for (int i = 0;i < array.length; i++){
    			System.out.print(array[i] + " ");
    		}
    		System.out.print("\n");
    	}
    
    }
    
    }
    

    Output:

    
    One 
    One Two 
    One Two Three 
    One Two Three Four 
    One Two Three Four Five 
    

  8. A couple of things are wrong.

     

    First off, you inserted numbers way too early in the game. The math game is best played if one stays symbolic as long as possible. Do that and you will find that the ratio of the gravitational acceleration at two different distances r1 and r2 from the center of the Earth is

     

    [math]\frac{g(r_1)}{g(r_2)} =\frac {\frac 4 3 \pi G \bar{\rho}(r_1) r_1}{\frac 4 3 \pi G \bar{\rho}(r_2) r_2} =\frac {\bar{\rho}(r_1)}{\bar{\rho}(r_2)}\,\frac{r_1}{r_2}[/math]

     

    Notice you the common factor [imath]4/3\pi G[/imath] nicely drops out. Now substitute [math]r_2=R_E=6371\,\text{km}, r_1 = r_2/2[/math] and you get

     

    [math]\frac{g(R_E/2)}{g(R_E)}\frac 1 2\,\frac {\bar{\rho}(R_E/2)}{\bar{\rho}(R_E)}[/math]

     

    Using your 6.70 gm/cc3 as the average density for the halfway point does lead to your 60%.

     

     

    This leads to the second problem. That density value of 6.70 gm/cm3 is completely wrong. Inside a spherical body, it's only the matter below that contributes to gravitational acceleration. All the stuff that is at a distance from the center of the body greater than that of the point in question contributes nothing. Halfway down to the center is about 300 km into the Earth's outer core. The Earth's core is mostly iron, compressed iron at that. We call liquids and solids incompressible, but that is a misnomer. The density of the material at this halfway down point is about 10.35 gm/cm3. Density builds up to 13.088 gm/cm3 at the very center of the Earth.

     

    Ok, I see where you're going. I was kind of afraid my assumptions would come back and bite me, but I was too lazy to go look up any kind of accurate numbers for the mean density at specific depths. That'll teach me to be lazy.

     

    Thanks for the explanation DH, I appreciate it. smile.gif

  9. Jupiter Atmosphere Dynamics on Wiki

     

    In brief, as of 2008 (when I assume this article was first written) no one really had a good idea of how Jupiter's atmosphere works to produce the effects we see when we observe it. The article linked covers a few of the hypotheses (specifically in the section I linked to directly), and it also goes into more detail about what scientists do know about the atmosphere. I'm not sure if anything has changed in regards to what we know about Jupiter since then, but hopefully one of our more knowledgeable members can tell us.

  10. You had the first part correct (halfway down you would weigh half as much as your surface weight if the Earth did have a uniform density) but you were well of the mark on the second part. Inside our real Earth, you would weigh more halfway down, not less.

     

    Ok, as that makes no sense to me, I'll illustrate my math, so you can show me where I went wrong in my calculations (I'm assuming I did something wrong, rather than you being mistaken DH.)

    Edit to clarify some notations

    gs = acceleration due to gravity at the mean surface of the earth.

    gm = acceleration due to gravity at a point half way between the point center of the earth and the point of gs

    p = mean density of the earth at the point that gn is calculated.

    r = the distance between the point gn is calculated and the point center of the earth. [math]r_{g_{m}} = \frac{1}{2}r_{g_{s}}[/math]

     

    Starting with

    [math]g = \frac{4\pi}{3}G pr[/math]

     

    Following from that (Edit: sorry, hit the wrong button )

    [math]g_{s} = \frac{4\pi}{3}\times\frac{6.674\times 10^{-8} cm^3}{g\times s^2} \times \frac{5.54g}{cm^3} \times 637810000 cm[/math]

    [math]g_{s} = \frac{4\pi}{3}\times\frac{6.674\times 10^{-8}}{s^2} \times 5.54 \times 637810000 cm[/math]

    [math]g_{s} = \frac{4\pi}{3}\times\frac{6.674\times 10^{-8}}{s^2} \times 3.533\times10^{9}cm[/math]

    [math]g_{s} = \frac{4\pi}{3}\times\frac{6.674\times 10\times 3.533 cm}{s^2}[/math]

    [math]g_{s} = \frac{4\pi}{3}\times\frac{235.792 cm}{s^2}[/math]

     

    [math]g_{s} = \frac{314.39\pi cm}{s^2}[/math]

     

     

    I am not going to bother taking the pi out. We've done enough to make a comparison.

    [math]g_{m} = \frac{4\pi}{3}\times\frac{6.674\times 10^{-8} cm^3}{g\times s^2} \times \frac{6.701g}{cm^3} \times 318905000 cm[/math]

     

    [math]g_{m} = \frac{4\pi}{3}\times\frac{6.674\times 10^{-8}}{s^2} \times 6.701 \times 318905000 cm[/math]

    [math]g_{m} = \frac{4\pi}{3}\times\frac{6.674\times 10^{-8}}{s^2} \times 2.136\times10^{9}cm[/math]

    [math]g_{m} = \frac{4\pi}{3}\times\frac{6.674\times 10\times 2.136 cm}{s^2}[/math]

    [math]g_{m} = \frac{4\pi}{3}\times\frac{142.557 cm}{s^2}[/math]

     

    [math]g_{m} = \frac{190.075\pi cm}{s^2}[/math]

     

    This shows, again assuming my maths are right, that [math]g_{m} = .605g_{s}[/math].

     

    Is there a flaw in my math?

  11. A vacuum can occupy a volume. This is not the same thing as saying it has volume. It's like asking what the volume of water is. We don't know until we describe the container holding it, or alternatively, until we enumerate the mass of the water we're discussing. Since volume does not (to my understanding) have mass, the only way to describe the volume of a vacuum is to use the volume of the container holding it.

  12. I think I've got it now. Please correctme if I am wrong:

     

    In terms of actuality, if I travel at the near speed of light I would feel absolutely nothing is out of the ordinary. The state of being frozen in time never actually happens. One just appears frozen in time to observers from another frame of reference.

     

    This is the correct interpretation.

  13. [math]g = \frac{4\pi}{3}G pr[/math]

     

    where p = density of the object.

     

    If we assume p remains constant (which isn't accurate, but let's make the assumption for the moment), then we can eliminate all the constants values from the equation, then all we're left with is the surface gravity being directly proportional to the radius. As the radius from the center decreases so does the gravity, and thus the weight.

     

    In truth, it's probably not quite exactly half, since the mean density of the planet goes up as you approach the iron core (the mean density of the Earth is roughly 5.54 g/cm3, while iron has a density of 7.87 g/cm3). Assuming you split the difference on the density at 6.701 g/cm3, then the actual force of gravity would be

    gmidpoint = .604gsurface or there abouts (as always, if I did my math right). In other words, you would mass the same, and weight about 60% as much as you do on the surface.

  14. Do you disagree with the 10 commandments in Ex.20 ?

    The first 5 of them have nothing to do with morality or ethics.

    On thou shalt not kill, God cannot take the moral high ground since he commands not only killing but genocide, and commits wholesale specicide when he floods the earth (I mean, if we're accepting the myth as true, right?). And if he is that morally bankrupt that he cannot even follow his own guidelines, why should I consider that anything he says on the subject is worth paying attention to.

     

    Without God, no objective moral standard exists.

    Why should I accept anything as an objective moral standard from a being who cannot even abide by his own supposed standard?

  15. That quote was from the Freeman.org site supposedly describing a NCBDN message, I see no reason for them to fabricate to such an extent.

     

    As far as I can tell the governing statute does not mention the internet - but I gather it has been the proliferation of internet sites, and the ease of mass-market reach of the web that has brought this to a head. No court would ever convict for a chat to a friend - I was being facetious, but the Board (presumably under legal advice) were representing the state of law to Steve Cooksey "Further, the state board told Steve it is a crime in North Carolina to offer dietary advice for free in private phone conversations with his readers and friends"

     

    I think this is the ruling statute http://www.find-laws...lina/Chapter_90 section 90-350 onwards

     

    </h2>

     

    SSSection (3) is a real doozy. BTW the definitions can be found in SS352

     

    So wait...according to a strict interpretation of SS3, it is illegal for me to advise a friend to consult a dietitian or nutritionist. I can't use those words at all.

     

     

     

     

  16. No, you will not. The problem is not the evidence. The problem is your will. Even if i would prove you Gods existence, you would reject God.

    Your presumption of my religious status is nearly as arrogant as your presumption that your belief is the only one that matters.

     

     

     

    I have actually done so, and shown that the codified, complex, specified information contained in DNA unmistakenly evidences a intelligent mind as origin of life. But you prefere to tape your ears and eyes. So the same question, you should actually direct to yourself.

    No, you haven't. You've stated it, but you haven't actually provided any evidence that has not been repeatedly refuted, shown to be incorrect, or is blatantly misrepresenting the science.

     

     

     

    I am able only to show why i believe the scientific evidence points to a intelligent creator. I have done so.

    Not to put too fine a point on it, but no one really gives two shits what you believe. All that matters is what you can prove. If it is necessary that life requires an intelligent creator, than you need to prove that one exists. Since no one has yet done so (and trust me, people have certainly tried, twisting science until it breaks), I am under no compulsion to assume your conclusion is correct without substantial proof.

     

     

     

    BS.

    This is a very succinct summation of your arguments to date.

  17. While we have no confirmation that the laws of physics are universal, we also have no reason to suspect they are not. If we subscribe to the idea that the laws of nature vary from one location in the universe to another, then we are suddenly introducing the idea that for some reason our section of the universe is special or different in some way, and that is a far more damaging assumption than the laws of the universe are the same everywhere.

     

    Also, not to argue semantics, but it turns out is a statement that science is working as we expect - it implies we learned something we didn't expect or that may not have been readily apparent. So yes, while it is a statement of confirmation, it's not as dogmatic as your interpretation would imply.

  18. And you have no idea how ironic that statement is, do you? It is obvious that further discussion with you on the matter is pointless. You are unwilling to actually consider what is being said to you.

     

    How about you ?!!

     

    But indeed : no one can convince me on the contrary. Neither i am here with that purpose. I have seen miracles happen in my life, that makes in impossible to NOT believe in God.

     

     

    When you start presenting evidence, I'll listen. However, personal miracles and parables from the Bible are not evidence, nor is your inability (or unwillingness) to examine the scientific evidence presented that conflicts with your statements. If you aren't here to discuss things based on evidence and science, why did you join a science forum?

  19. I asked the question of why a person would kill another maliciously and without provocation. Murder in itself should be alien to normal civilized reasoning yet it happens. Below are some examples, but why?

     

    http://rawjustice.co...-someones-life/

     

    There was no intent to make this a political issue or one of bias, only the question, how can such carnage is done to a group that you don't even know?

     

    Again, it depends on how you define the word murder. Some people seem to think it's equivalent to the word kill. According to the Cornell University Legal Information Institute

    Murder occurs when one human being unlawfully kills another human being.

    Under that definition, then no, there is no rationale to commit murder. However, prejudices are not rational.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.