Jump to content

Halc

Senior Members
  • Posts

    174
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Halc

  1. He said "ie invented fire, internet, space flight, cars etcetc", and those things are pretty inevitable given the state 50000 years ago. It just doesn't take exactly 50000 years in each case. Maybe 20000 or 200000, but it gets there. You said Chaos theory says 'no' to the question in the OP, and it was that with which I was disagreeing. Agree about the annihilation bit, but the goals mentioned in the OP would already have been achieved in that case. We were never capable of destruction of the species before the advent of fire, flight, and cars. It could admittedly happen (and almost did) before the internet came around, so that one is far less inevitable. About the 'crucial person', that depends on what you mean by it. I mean, sure, one idiot can push the button and doom a world permanently back to near animals. There are several examples of crucial decisions that prevented things like that. But other things: No Einstein say. Somebody else would have stepped up, and in short order. The time was ripe for one or more world wars given the state of things around 1900. The first war was perhaps a political fluke, but the second seems almost mandatory given the advances in military technology at the time, making the transitions from [he who has the most soldiers] to [he who invents (and uses) stuff first] and finally to [endgame where either MAD dominates, or one power takes a permanent brutal hold] Of the 1000 worlds (from 50000 years ago, not 1900), how many manage to place a permanent self-sufficient off-planet colony somewhere? Not many. Not ours I bet.
  2. Can't totally agree here. Sure, evolution would have gone in a completely different direction in each place, but humans were pretty much as they are now by 50000 years ago. Neanderthals were well integrated into the blood lines of the southern breeds. Most of the adaptations that have been made since then revolve around dealing with new diseases as they pop up, which probably would be wildly different from world to world. Chaos theory has strange attractors, and humans going technological is a reasonable inevitability from a state that recent. So maybe 25% of those 1000 worlds? It would of course take more or less than 50000 years to do it on each. The 25% is a POOMA estimate. Probably higher now that I think of it, since the only way to stop it would probably be something that wipes us out, unlikely in that short time. The intelligence needed is already there (and is actually currently on the decline), so it seems to be a matter of time. As for an illustration of chaos theory, consider 1000 copies of Earth circa 1900. None of the humans alive today would exist on any other world after 123 years. There's no attractor for that. War(s) is inevitable, but the actual main players are not. Of those 1000 worlds, technological civilization would end before 2023 in many (majority?) of them. We've come too close too many times to make it particularly probable that we get as far as we have. Humans had controlled fire for at least 3/4 million years. 50000 is nowhere far back enough to ask if it would happen again.
  3. A for() loop is just a generalized form of a while loop. They're essentially the same thing. A do loop is different only in that it executes the body unconditionally at least once, which is inappropriate for summing up an array since it would generate erroneous results with an empty array. Examples of each, including the invalid do loop. Each assumes a line int sum = 0; at the top. for (int x = sizeof(numbers) / sizeof(int); x; x--) sum += number[x - 1]; for (int x = sizeof(numbers) / sizeof(int); x; sum += number[--x]) {} // alternate way to do it int x = sizeof(numbers) / sizeof(int); while (x--) sum += number[x]; int x = sizeof(numbers) / sizeof(int); do sum += number[--x]; while (x > 0); // wrong // An example of traversing the array forwards instead of backwards // This can be done for any of the loops above, but I find comparison with zero to be more optimized. for (int x = 0; x < sizeof(numbers) / sizeof(int); x++) sum += number[x]; Except for the inline definition of int x, this is pretty much C code, not leveraging C++ features Differences, besides the do loop being buggy, is that the for loop the way I coded it lets x drop out of scope after the loop exits. I find them all fairly equally readable since they're all essentially the same code.
  4. Escape velocity of Earth from the surface is about 11.2 km/sec, and of that energy is needed to get to the moon, which is around 1/2 km/sec from escaping Earth itself. I wouldn't call that 'well under'. Similar reasoning shows why it is so much easier to escape the solar system from Earth's orbit than it is to drop an object into the sun, let alone actually go into low orbit around it, which is currently beyond our technological limits.
  5. In the model where t 'runs' at all, no such wait is needed. That's the model with the universe being contained by time, just like you and I are. We have a start and a finish with time unaffected by our temporary presence. You mean we study things from our current event (a perspective, that in the large scale of things, is a point in space and time). Science regularly describes the universe outside this one perspective, so no, it isn't particularly mind bending to consider it as a whole, without a preferred moment or preferred location. As for time being T or t, there is not really a difference. It is what clocks measure, no matter the interpretation. There is not a 'relativistic time' that is different than that, at least not according to relativity theory. I suppose there is a difference between the two in some kind of absolutist theory (something in denial of Einstein's theory), but then T is really undetectable, not something that can be measured or demonstrated. So then T would be that which flows (instead of a dimension), and t would be what a local clock would measure, and a second of t would not correspond to any particular duration of T. I'm not sure if the absolutist theories reference T at all in a generalized theory. If they are that like us, then their stories would be similar. As for it being 'back in time', my comment referred to the relativity of simultaneity. The current time of any distant place is frame dependent, and thus whether this planet occurs prior to or after our civilization is a matter of convention. If the universe appear younger to this distant place, then by that convention, they are prior, and their point of view shows a younger universe and perhaps they are unaware of things like accelerating expansion which didn't really start happening until around when our solar system formed. OK, well that is a widely held view, but it counters relativity theory. The vast majority of people don't care about the implications of relativity theory. The opinion is not necessarily wrong. There are alternative theories that take this stance, even if it took about a century longer to generalize them into an actual theory of the cosmos instead of just a local theory. I never said it was a coordinate. I said it was a dimension in relativity theory, but only has a defined orientation if a coordinate system is specified. Relativity theory (GR, not so much SR) interprets the cosmos geometrically as 4 dimensional spacetime, with 1 temporal and three spatial dimensions.
  6. This seems to rely on the assumption that the universe is contained by time, rather than it containing time, per relativity theory. If so, then yes, the universe is a thing that didn't exist before, and somehow came to be after a countdown reaches zero from a finite or infinitely distant prior moment. Relativity theory says time is just one of 4 dimensions of spacetime, part of the universe, rather than the universe being a temporary object contained by time. This seems to suggest that time itself was created at some moment, and that at prior times, time didn't exist. That seems pretty self contradictory. Depends on how close to Earth-like you want. A rocky planet in the habital zone? Plenty of those. One with an atmosphere we can breathe? No evidence of anything like that. As for if Earth was first among the nearby planets, that seems absurd. There are plenty of older star systems. As for Earth being prior to really distant Earth-like places, per relativity of simultaneity, which one came first is a matter of the convention you choose to compare ages. You talk about defects in time, but give no clue as to what you might mean by that. No. Space is up, a direction perpendicular to north. The analogy is apt. There is no north of the pole, nor is there 'down' beyond about 6500 km. These are examples of dimensions that are bounded by the coordinate system, exactly the way time is bounded at the big bang by a cosmic coordinate system. This seems to suggest some sort of cyclic model, but they've had great trouble finding one that matches empirical evidence
  7. The event horizon is a null surface, and as such has a coordinate area, not volume. I'm not sure of the relationship between this area and its angular momentum, all else being equal. Yes, a rotating black hole (Kerr metric) contains a ring singularity. A charged black hole (Reissner-Nordsrom metric) cannot have its charge exceed its mass. So no additional charge can be added to one that is sufficiently close. The mass in unaffected by this, and the event horizon 'radius' is determined by the mass. If there is a black hole with charge equal to its mass, you get a naked singularity, which is a singular solution to the metric. So (just thinking out loud here, not an authority), if you have a super-positive charged black hole near this limit, a negatively charged particle would be more attracted to it than a neutral particle. Thus I would think there would be a second charged event horizon for the negatively charged thing that is further out than that of say a neutrino. Also, the EM potential would be so steep that it would probably rip apart (an EM 'tidal' effect) neutral things like a neutron, pulling it into charged components and accepting only the one.
  8. I presume it's supposed to turn despite no net torque applied. That can't work. Sure, you have a force at application points pushing it counterclockwise, but the torque applied between the plate and same points of application balance that, pushing it clockwise. No motion will result. Rule 1: Perpetual motion machines violate physics. Can't be done.
  9. Per the no-hair theorem, one can dump antimatter in a black hole with no different effect than dumping ordinary mass (or dark matter) into it. It increases the mass and effects the angular momentum and charge accordingly, but no gamma reaction except for any interaction with say the accretion disk. This acts as sort of a long-term equalizer since any black hole will eventually radiate away with Hawking radiation, which emits no more matter than antimatter.
  10. Apologies for slow reply, but I've been logged off for several days. If the paper touches at only two points, that’s a one-shot teleport from one event to another. There is no gate held open, and thus the concept of the velocity and acceleration of the ‘gates’ does not apply since an event is a frame-independent fact. So I think you mean rolling the paper so it intersects at a line following the time axis, thus forming a worldline of your stargate. Yes, you don’t need to distort the paper to do that. If you can create such a thing where the two gates are simultaneous in Earth frame, then you’ve created a time machine. All you need is a second set of gates that with the two ends simultaneous with the frame of some receding object. Go through the Earth gate, come back through the other one, and now it’s 1921. Just pointing out that if you posit this sort of thing, then circular causality results. Didn’t need to accelerate either end of a gate to accomplish it. That was the metric spoken of I think. If I get you right, then conversation across our dining table with has one person on helium and the other on Xenon, each respectively from the perspective of the other. It would be like trying to talk with your twin on the fast ship. OK, no time machine there unless you build a 2nd gate with the properties described above. Why would the gate time be synced with one end (Earth) and not the other? Wormholes don’t seem to have a preferred end like that. I assume they’re relatively stationary then, else they could not be in sync. OK, they could, but only in a frame where the two endpoints have equal and opposite velocity. Ouch! That kind of blew my frame reference clutch. Let me see if I get it. The gate ends are in sync in Earth frame, both say noon, 3.464 light hours apart. The ship moves at .866c and gets there in 4 hours (4PM), but subjectively only 2 hours pass on the ship. If he leaves at ‘noon’ (synced with Earth clock at departure), then the destination clock moves from 3:00 to 4:00 during the two hour trip the clock makes moving to the ship, so yes, the Earth clock (noon) is 3 hours behind the destination clock that reads 3:00. When the destination clock passes him at 2PM, the Earth clock simultaneously reads 1PM. If someone enters the gate at noon, he’ll appear at the destination at noon (according to both local clock and his watch). Not sure how that can be construed as not entering until a long time passes. Ok, he not only steps through the gate, but does so at .866c. In that frame, he exits the gate at noon, and the receding Earth clock currently reads 9AM, which is 3 hours behind. So I read you so far. He’ll not enter that end of the gate until 6 hours from now when it’s noon over there. You are opening a portal between events that are separated in a space-like manner. Nothing violated by that (except locality) until you open a second one synced in a different frame. The main reason it isn’t a big problem yet is because you’re avoiding accelerating the ends, which is why I attempted to explore that part. I think SR has problems with wormholes in the first place. There’s just no such concept in Minkowskian spacetime. You have to jump to GR for that, and SR is suddenly inapplicable anywhere and thus cannot be violated. The acceleration of the rocket doesn’t have any affect on what time it is back on Earth. You make it sound like a causal relationship when in fact it is just a changed choice of coordinate system, which can be done without actually accelerating.
  11. You seem to be envisioning something like a stargate, a portal connecting the non-parallel worldlines of say two different planets. If one thinks of it as such, there's no reason why it cannot look just like a window. One can eat at a table that is half here and half there, and you can talk to the other person light years away as if they were in your presence, and can pass the salt and such. The characteristics of such a setup depend on said unspecified metric. Imagine a clock at each end of the table. If the clocks stay in sync despite the relative motion of ends of the wormhole, then one end can be accelerated as in the twin scenario, starting and ending in near proximity. When the other end of the gate returns, the table is still there and both observers (neither of which have passed anything except the salt through the gate) will have aged the same, resulting in the wormhole/portal becoming a time portal instead of a spatial teleport setup. In other words, the portal can be changed from connecting events with space-like separation to connecting events with time-like separation. Similarly, the stargate could be set up at constant separation but vastly different gravitational potentials. If the clocks tick at the same rate, it quickly becomes a time machine. If the two clocks do not stay in sync, the two parties eating at the table will have difficulty communicating since one will be 'faster' than the other. The setup could be used to determine the absolute rest frame since the clock that objectively ticks faster must be moving slower. The principle of relativity would be violated.
  12. A CPU cannot have no program loaded. There is always the instruction it is executing, and the one after that. A CPU consumes the most power from transistors changing states. It takes X amount of energy for a transistor to switch from on to off and back again, so you multiply that by the rate the switching takes place and you get an idea of the heat produced by the chip. Many systems (laptops, phones especially) have a low power mode where the software recognizes low demand for services and puts the device into low power mode somehow. This probably involves a significant reduction in the clock rate which directly affects the rate at which those transistors change states. At a lower clock rate, a lower voltage might be required to maintain this reduced performance, and low voltage also reduces the energy needed for the state changes. The CPU is a synchronous device, so everything on it is dependent on the clock. If the clock is stopped altogether, the CPU does nothing and comsumes only static power which is minimal. It also would be totally incapable of recognizing a sudden demand for its services, so something outside the CPU would need to be involved in the monitoring of demand. It would not be software controlled since no software can run on a stopped CPU. Not sure if any device actually stops the clock to a CPU on a device that isn't fully shut down.
  13. Great. A cartoon eye. No, an electron microscope can only see things sitting still since it works effectively by touch, not light as implied by the eye. What they're probably detecting for electrons is some kind of charge detector like is used by a ground-fault detector in your bathroom outlet. Not sure if you can turn it on and off since it is a passive device. If the device takes no measurement (has no effect on the electron) 50% of the time, then 50% of the time the electron will reach the target with a simple pattern and the other times with an interference pattern. If the electrons are coming continuously, you'd see the pattern change from one to the other as the sensing device is function or not for whole seconds at a time. If they're using photons, I know a diagonal polarizing filter at the slits is enough to eliminate the interference pattern. You can't turn a polarizing filter on and off either, unless there is some really weird gadget that does this.
  14. The 'device' can be the far wall on which the interference pattern appears, which isn't something that can be 'turned on and off' 50% of the time. Perhaps you have a specific device in mind that can meaningfully be turned on and off, and thus allowing a more specific answer. And yes, there being a human involved anywhere or not makes no difference. The vast majority of quantum measurements/collapses take place without any human being immediately aware of them. This is true even with experiments set up in labs by humans.
  15. How about a galaxy 50 BLY that-away? Definitely mathematically expressible, but so is a perfect square. Neither is physically observable, at least not by us. It would be measurable ('observable' makes it sound like a life form is necessary) by something in that galaxy. Does that make a difference? A relativist would say it doesn't exist relative to Earth and v-v. Existence is a relation (not an objective property) in such a view, which is precisely the attraction of it. If you accept the principle of locality (no faster-than-light information transfer) in quantum physics, then it is a mistake to assert the specific distant galaxy exists at all. It leads to contradictions per Bell's theorem. That throws quite the wrench into the idea of objective existence. Side note: I agree that a route doesn't require my existence. My sister doesn't exist, and yet the route does. Of course, expressed as a relation, the route to the Milky Way doesn't exist to my sister, so go figure.
  16. I can actually think of epistemological cases. The Egyptians of old were known for stamping out all mention of certain prior Pharaohs from the records. These were rarely entirely successful, but when they were, they did very much make them 'cease to having ever existed', at least from an epistemological standpoint. They very much have an ontological existence in history, but nobody can remember them anymore. Your memory (of this and that) very much once existed, and cannot cease to have ever existed. It just doesn't exist now. Same with history or Earth and our respective fathers, which have been erased from existence, but with no implication of having never existed. Nowhere did I say that any of these things might no longer exist. More explicitly, I meant that nothing that once existed can subsequently cease to have ever existed. Area54 seems to get my gist. Yes, it's a verb tense thing, not a deep point.
  17. This is very much a philosophical topic which needs proper definitions to communicate clearly. If a brain is changed while being formed, it's still the same brain, just altered from some prior state. Putting a scratch in my car doesn't make it not-my-car. You change ever second of every day, and yet you're still you. A static unchanging thing cannot be alive. By definition, nothing can cease to ever exist. If it ever existed, then that’s that. It’s not something that can be ‘changed’. I can bring about a premature cessation to the duration of its existence, but that doesn’t make it having never existed. You’re asking what changes the identity of the consciousness? That, being essentially a process, doesn’t necessarily have an identity. You having consciousness is like a candle having a flame. Combustion doesn’t really have identity. I can use a candle to light another one. Is it the same combustion, or a different one? What if I blow out the original candle and relight it from the 2nd one. Now is it the same combustion or a new one? The Olympic torch is about the only example I can think of where humans worry about the identity of the combustion. In other words, you need to backtrack and spell out what you think defines your identity. If it’s stream of consciousness (one that is interrupted every night?), then the ‘memory’ answer (see Bufofrog’s reply) works for a while, but then what if that memory can be duplicated or replaced? It’s only the lack of our witnessing that sort of thing going on that allows us to function with such a definition. Again, if it was made, in the womb or otherwise, then it exists and cannot be in a state of not-ever-going-to-exist. The process mostly goes on there, but a brain without the rest of the body is about as unconscious as can be, so I’d be reluctant to box it in that tightly. I’d say that my consciousness extends well beyond my body into the world that is part of my experience. Now this isn’t a case of altering an existing thing. It’s like saying that if my Honda was instead a Lexus, it would still be the same car (because it’s mine?). Small change, same ‘parents’, but different factory. Hard to argue that it’s the same car, as opposed to the same car being painted blue or green near the end of the assembly line. It seems completely implausible that a non-existent entity can experience somebody else. There’d be no you to experience this other person. They’d experience themselves by definition. I think you envision an immaterial entity that experiences your body. That’s pretty much a religious stance, sorely in need of clarification, such as what role is played by the various parts. What holds memory, the experiencer or the brain? What makes the decisions? Who’s in control? Without such elementary designations, there are too many permutations to comment on them all.
  18. Despite the wording above, I agree that dark energy isn't an actual force, but dark energy will begin to increase the proper separation between two relatively stationary objects, and that translates to a sort of kinetic energy which could hypothetically be harnessed to do work (imagine a seriously long thin string between them). Gravity will also separate the pair of objects when placed in the deep void * (regions of negative mass density relative to the mean), and gravity isn't an actual force either, at least not under relativity. Like gravity, I think dark energy can be expressed as a force only when considered in Newtonian terms, and it doesn't make much sense there since Newtonian physics has no concept of expanding space. From a geometric standpoint, spacetime with expansion but without gravity and without dark energy is effectively indistinguishable from Minkowskian spacetime. There would be no event horizon since light would eventually reach us from galaxies of any distance and any recession speed. That horizon is only there because of the effects of dark energy. * One of the nearest such regions is the Dipole Repeller which seems to expel all the galaxies in its vicinity. This shows that in an otherwise uniform distribution of matter, the absence of matter in an isolated pocket of that distribution will have a repulsive gravitational effect on all the nearby surrounding masses. Right. The CMB would not appear isotropic from Y's PoV, and from this Y could measure his peculiar velocity of 70 km/sec towards X. I couldn't quite parse that, but by stationary relative to each other, I explicitly qualified that to mean 'constant proper separation', meaning a string between the two would not break or stretch.
  19. The question is, why do you think they do? 'Space' isn't something that can apply a friction-like force and begin accelerating an object. Assume we have two pebbles X and Y that are a megaparsec apart, and they're way out in the void between galaxies. Now a megaparsec is a long way. You can fit at least a couple dozen galaxies like ours side by side on one. Nearby galaxies are going to exert tidal forces on our pebbles drawing them apart, so we're going to ignore gravity and also dark energy and just concentrate on the expansion. Pebble X is stationary relative to the cosmological frame, that is, the CMB appears isotropic from X's PoV. It is said to have a peculiar velocity of zero. Y is stationary relative to X, that is, the proper separation between X and Y is constant at 1 megaparsec. Since 'space' is expanding at a rate of 70 m/sec/mpc, Y must have a peculiar velocity of 70 m/sec towards X which exactly cancels the space expansion. There's no reason to think it will lose this velocity per Newtons first law. If expansion exerted a force on it, that would be akin to friction with some kind of aether, and that would drag any peculiar motion down to zero over time, which would have all orbiting things (going around a galaxy especially) lose their orbital motion and spiral into the centers. Angular momentum would not be preserved.
  20. Earth is not moving in some direction due to expansion. It is moving in some direction (relative to say the cosmological frame) because net forces on Earth or the materials from which it is composed have cumulated in its present velocity/momentum. Our velocity (relative to the frame of your choice) has changed by over 400 km/sec since the Spinosaurus was around, so those external forces are not insignificant. In other words, if I put two objects in space separated by say a megaparsec, that are stationary relative to each other and not subject to external forces like gravity from nearby objects, then under just expansion alone, they will remain forever the same distance apart. Dark energy is probably the only actual force (that is not expansion itself) that will push the two objects apart over time. This is not expansion, but the acceleration of expansion, and yes, that does require force and energy and would affect said mutually stationary things.
  21. The author admits in the intro that an observer does not see the history of the universe. That question is discussed on stack exchange here which admittedly discusses the simplified case of a Schwarzschild black hole. This image from there: This clearly shows a finite history of some outside object (dotted worldline) seen by the blue worldline of our infalling observer, Cauchy horizon or not. Kino's Kruskal diagram shows the same sort of thing. The Cauchy horizon for a charged or rotating BH seems to have special treatment in that the spacetime beyond it isn't 'smooth', but I still don't know how the history of the universe could be in the causal path of that region. The wiki page on a charged black hole makes references to the 2nd horizon. No nice diagrams like above ☹️ and the ones in the paper don't seem to demonstrate the claim to my untrained understanding. It seems that sufficient charge can prevent any mass from collapsing into a black hole (layman guess: because the EM repulsion is greater than the gravity attraction?), and perhaps below said Cauchy horizon, it prevents the singularity from forming, resulting in a chaotic fixed 'density' with no actual singularity? Just guessing here, but such a construct could be maintained indefinitely. This does not seem to be what the author above is saying, since he talks of a point p where the observer crosses this horizon (an event) that has the whole universe in its causal history, not the collective set of events inside this horizon. I'm obviously out of my depth here. Still, Reissner-Nordström and Kerr black holes (and Schwarzschild) are not models of real black holes since none of those solutions include Hawking radiation. Any BH has a finite life, and any events outside the past light cone of the final evaporation event will not be in the causal past of any event within the black hole.
  22. I was going to jump on that. +1 for catching it. In my reply above your post, I mentioned the other companions all around you falling with you. They don't disappear from your sight. They're not 'below' you, they trace a worldline near your worldline and there is no way light from one nearby worldline doesn't reach the other, regardless of the direction in which this companion appears in relation to you. The usual local laws of SR very much do apply here per the equivalence principle. The falling observer is very much stationary in his own reference frame. That frame simply doesn't correspond to any inertial reference frame relative to a distant outside frame of reference, say the inertial frame in which the center of mass of the BH is stationary. This is not a contradiction, just an abstract consequence that no outside inertial coordinate system foliates the events inside a black hole. That in no way implies that the events inside a black hole cannot be locally mapped with an inertial coordinate system. The falling observer is stationary in his own frame and sees the objects all around him in any direction. If not, he'd not see his feet or hands.
  23. That was the question in the OP, yes, and it has been answered. The feet that he sees are the feet from a few nanoseconds ago (falling frame), same as the feet you see now are not the present feet, but the feet in the past. Those feet were outside the EH when the light was emitted from them. I've said as much since my first reply in this thread. A body does not experience itself in the present since it takes time for any information to travel from say feet to head. So there's no anomaly in spacetime from the PoV of the falling guy. It's all normal physics to him, and he has no awareness of having crossed over unless he has a computer with him that informed him of the situation, since it is a calculable thing. The view outside the window also doesn't change appreciably. There is a section of the normal universe that occupies a percentage of his view, with the rest of the view black except for other sources of light falling in with him, such as his feet. If 50 guys all fell in sort of with each other, not all at the same time or place, they'd all still be able to see each other at all times, but tidal effects would eventually alter their distribution. It is red shifted only from the perspective of something hovering outside. Our infalling guy is in a completely different frame of reference in which no red-shift is observed at all, at least not until the spaghettification begins to occur. Per the equivalence principle, he cannot perform a test that demonstrates when the EH is crossed. GR rests on that principle and would collapse if the descriptions you paint actually occurred. My feet appear to me to be more red shifted here at my desk than would be seen by our guy falling in. This is because the falling guy is inertial and I am not.
  24. You're still not reading the posts. Nobody is suggesting light travelling from the interior to the exterior, or for that matter, in any direction that doesn't head steadily in the direction of the sigularity. md65536's picture shows all the light paths and none crosses from in to outside the EH. Typo? Perhaps you meant to say that it cannot. Light cannot orbit (a Schwarzschild BH) any closer than the photon-sphere which is 1.5 times the radius of the EH. It gets more complicated for something like a Kerr-Newman BH which is a more realistic model of actual black holes.
  25. Correct. You could go in spinning for instance, so feet/head worldlines switch sides repeatedly, taking turns being 'in the lead' so to speak. You could have two things orbiting the BH and slowly spinning in with high but opposing relative velocity. The line defining the center of the light cone is frame dependent, so it's always in the center relative to the frame of the falling thing I think. There's not one unique worldline that the one at the center of a given event's light cone, but the BH itself sort of defines an obvious symmetrical frame where the object drops straight in instead of the more likely spiral. Thus there's no worldline of a particle near the speed of light since in the frame of any falling thing, it is stationary with a worldline centered on its (local at least) light cone.
×
×
  • 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.