Slashdot Log In
Teleportation Gets a Boost
Posted by
ScuttleMonkey
on Wed Oct 04, 2006 05:35 PM
from the no-more-beaming-i'll-walk dept.
from the no-more-beaming-i'll-walk dept.
saavyone writes to tell us Yahoo! News is reporting that while teleportation may not quite be a reality yet a team of Danish scientists have raised the bar on this line of research. From the article: "The experiment involved for the first time a macroscopic atomic object containing thousands of billions of atoms. They also teleported the information a distance of half a meter but believe it can be extended further. 'Teleportation between two single atoms had been done two years ago by two teams but this was done at a distance of a fraction of a millimeter,' Polzik, of the Danish National Research Foundation Center for Quantum Optics, explained. 'Our method allows teleportation to be taken over longer distances because it involves light as the carrier of entanglement,' he added."
Related Stories
[+]
IT: Malware In Quantum Computing? 91 comments
MattSparkes writes, "Today's quantum computers are not sophisticated enough to do anything malicious to your online bank account; the field is in its infancy. However, there are in theory more ways to attack quantum computers than classical ones. As quantum networking takes off, this is going to become a larger and more immediate problem." The Wikipedia article correctly identifies as an unsolved problem in physics the question of whether it is possible to construct a practical computer that performs calculations on qubits.
This discussion has been archived.
No new comments can be posted.
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
Very funny Scotty, (Score:5, Funny)
Anyone have the youtube link? (Score:4, Funny)
Re:Anyone have the youtube link? (Score:5, Informative)
http://www.nbi.ku.dk/side39251.htm [nbi.ku.dk]
Parent
SciAm article (Score:5, Informative)
First Teleportation Between Light and Matter [sciam.com]
Re:Scientific... American? (Score:5, Funny)
Parent
Ramifications (Score:5, Funny)
Dan East
I really need to get one of these... (Score:4, Funny)
Thousands of billions... (Score:5, Funny)
Trillions, even?
this just proves my theory... (Score:5, Funny)
No Thanks, I'll walk (Score:5, Funny)
I teleported home one night
With Ron and Sid and Meg;
Ron stole Meggie's heart away
And I got Sidney's leg.
Easier method to teleport between solar systems (Score:4, Funny)
2. Use DNA sequence to grow said creature.
3. Install memory sequences, also sent as information.
4. Wake person up.
5. Keep original as slave in vast human slave army used to conquer the galaxy.
6. PROFIT!
Re:Just the information? (Score:5, Interesting)
If they're using quantum teleportation, they can't. It's not possible to clone generic quantum states. Specific ones, yes, but that won't cover everything.
The article is wonderfully sparse on actual information. A "macroscopic atomic object containing thousands of billions of atoms" was "involved," but what does that mean, exactly? Probably not that it was transformed to light (or light was transformed to it), nor that it was actually teleported.
My favorite part of quantum teleportation is that, if it ever is used to teleport objects, it'll have to transfer the state from the source atoms into some entangled destination atoms. Then the state will be lost in the source, and you'll be left with a mound of goo. That'd really make people want to try it out.
Parent
Re:Please... (Score:5, Informative)
It's still isn't anywhere near dematerializing the matter and poof`ing it across the room/planet. However, what is happening is the quantum information (in this case, the spin state) of the matter has been instantly transported. That is a essential step in building a quantum computer or cryptography network.
Parent
Re:Please... (Score:5, Interesting)
In taking the next step, Eugene Polzik and his colleagues at the Niels Bohr Institute in Copenhagen shined a strong laser beam onto a cloud of room-temperature cesium atoms whose spins were all pointing in the same direction and fluctuating according to their given quantum state. The laser became entangled with the collective spin of the cloud, meaning that the quantum states of laser and gas shared the same amplitude but had opposite phases. The goal was to transfer, or teleport, the quantum state of a second light beam onto the cloud.
To do so, the group mixed a second, weaker laser pulse with the strong laser and split the superimposed beams into two arms. A detector in one arm measured the sum of the beams' amplitudes and a detector in the second arm measured the difference between their phases. Neither measurement disturbed the delicate entangled state between the light and cesium. But the researchers could use the results to apply a precise magnetic field to the cesium vapor that effectively canceled out the ensemble's original spin state and replaced it with one that corresponded to the polarization of the weak pulse, as they report in the 5 October Nature.
Parent
Re:Please... (Score:5, Funny)
It's really quite simple. The system involves two opaque boxes (A and B), both with closable lids,.
One operator places the item to be teleported in box A and closes the lid. The operator of box B then opens the box and observes the contents. By doing so, the item appears in box B.
This works because of the way particle physics works. Any object may be in multiple places until it is actually observed. By hiding the item from one operator, the location of the item becomes unknown, and therefore the other operator is able to transport it to them merely by observing one of the locations it may have travelled to.
Really, this is elementary physics and it's surprising how rarely we take advantage of it. I actually go to work every morning by going to the bathroom, alone, closing the door, and then phoning a collegue at work, asking him to open the cubicle door at the bathroom there. By keeping my eyes closed at the precise moment he opens the door, I am able to ensure my own location is unobserved, and therefore that my precise whereabouts are unknown until my collegue opens the door and observes me. It's very useful and saves a lot of gas, but has the disadvantage that you have to rely upon there being someone whereever you want to travel to that you can contact who can observe the contents of a previously unobservable man-sized space. Also there's the danger that two people might do the same thing at once, in which case there's the danger of a time/space paradox being created.
Parent
Re:Please... (Score:5, Funny)
KFG
Parent
Re:Please... (Score:5, Funny)
Parent
Re:Please... (Score:5, Informative)
Parent
Re:Please... (Score:5, Funny)
Its not a:
$ mv source target
Its a:
$ cp source target
Oh Gosh, now I fully know quantum computing!
Parent
Re:Please... (Score:5, Informative)
$ mv source target
Because of the No cloning theorem(http://en.wikipedia.org/wiki/No_cloning_t
Parent
Re:Please... (Score:5, Informative)
$ cp source target ; rm -rf source :-) )
(actually, I think mv does exactly this, but just to be explicit
And nobody has corrected this yet? Is this really Slashdot?
The "cp" operation will temporarily consume twice as much space as the original before the original is removed. Actual data is being replicated. "mv" (at least within the same file system) will leave the data where it is and merely change where the pointer (i.e. directory entry) that points to it is stored. With your version you have two files temporarily and a possible duplication if the operation fails due to a power outage somewhere in the middle. The normal "mv" operation could leave you with NO files (the data is still there but unaccessible) depending on how it's implemented. (No, not on journalling file systems, but thats something else again).
In particular, a "cp ; rm" will delete your original if the cp fails due to, say, a full destination disk. So at least a "cp && rm" is advised. Which can fail, for example, if some of your source data is unreadable. While "mv" will still work, since the source data is never actually touched. Depending on your filesystem, default flags and implementation, "mv" will often also not change the last-access or creation-timestamps, file ownership and/or file permissions which may or may not be changed by cp. Also the permissions needed in the source and destination directories can be different for the two.
Really - what's up with you folks out there? Why aren't there 20 posts pointing this out already?
Parent
Re:Please... (Score:5, Insightful)
I think most people's concept of "teleport" is something else entirely. What the physicists are doing is something more aking to "faxing". Granted, it's really high-quality faxing, but faxing none the less. But "quantum faxing" doesn't have the same ring to it.
Fundamental to the concept of "teleport" as all non-physicists know it is that the matter being teleported moves from one place to another. In this case they "teleported" atoms of Cesium. But they started with Cesium atoms on both sides of the "teleporter" at the beginning and the end. They didn't "teleport" the Cesium any more than a FAX machine "teleports" paper.
Parent
Re:Please... (Score:5, Informative)
Put simply you can record the quantum states of an atom/particle(or your entire body) and then send this information using a classical channel like radio. Once this information gets to your destination(eg Mars) the guys at that end can use that information to affect some particles over there, and because of Quantum Entanglement, those particles on Mars will instantly take on the recorded state. The particles at the start will then lose their state due to the no cloning therom(http://en.wikipedia.org/wiki/No_cloning_th
Note that it's not technically "Teleportation", you are just changing the states at the quantum level.
Parent
Re:Ok I will do it (Score:5, Insightful)
One question worth asking, is whether the relative position of the atoms are maintained through "teleportation". I would assume not. So at this stage, even if you did succeed in transporting a human, they would end up as a pool of water and carbon atoms I guess.
This is more of a philosophical question, I think. Hypothetically speaking, you could see it as killing the person, and re-assembling their likeness. But "their likeness" would know no different, and he/she would feel and act like the real person. Equally, as you say, an outsider would know no different. Would you be willing to kill yourself, knowing that an exact replica of you is about to be re-created.
It goes further, too. Does the soul exist as something other than the collection of atoms and particles that comprise us? If so, does this get left behind, or somehow carried across?
[1] This is how I understand it, at least. Maybe someone could clarify, and explain if anything other than spin would get replicated.
Parent
Re:Ok I will do it (Score:5, Informative)
It isn't. Despite the regular press idiocy on this subject, quantum teleportation [wikipedia.org] has got absolutely nothing to do with Star Trek-style transporters. This is a form of communication link, teleporting information from one place to another at the speed of light. It cannot operate on people, rocks, or any other tangible object. We may someday invent a matter transporter, but it won't be using this technology and it certainly isn't what they're studying. To quote from the opening paragraph in the Wikipedia article, which is the very least any ignorant reporter should read before posting nonsense on the subject:
Quantum teleportation does not transport energy or matter, nor does it allow communication of information at superluminal speed.
This is about the next generation of technology that may someday replace optic fibre for long-distance communication links (and may also be useful in the construction of quantum computers, should we ever find a use for them). Nothing to do with Star Trek. If you ever catch a reporter confusing the two again, please hurt them. Badly.
Parent