Debunk these news stories (QM Radar)

  • I
  • Thread starter .Scott
  • Start date
  • Tags
    News Radar
In summary, the article discusses how quantum radar could be used to detect stealth aircraft. It states that the technology exists, but that more research is needed.
  • #1
.Scott
Science Advisor
Homework Helper
3,474
1,588
Normally when I cite something, it's to an article I consider credible, but this one is not:
http://www.popularmechanics.com/military/research/a22996/china-quantum-stealth-radar/
The specific assertion in question is this paragraph:
In quantum radars, a photon is split by a crystal into two entangled photons, a process known as "parametric down-conversion." The radar splits multiple photons into entangled pairs—and A and a B, so to speak. The radar systems sends one half of the pairs—the As—via microwave beam into the air. The other set, the Bs, remains at the radar base. By studying the photons retained at the radar base, the radar operators can tell what happens to the photons broadcast outward. Did they run into an object? How large was it? How fast was it traveling and in what direction? What does it look like?
The article also asserts that Lockheed has patented this method. Who knows, perhaps they have.

Here's a paragraph from another news source http://www.extremetech.com/extreme/...could-render-entire-us-stealth-fleet-obsolete:
Quantum radar would exploit quantum entanglement, the phenomena that occurs when two or more particles are linked, even when separated by a significant amount of physical space. In theory, a radar installation could fire one group of particles towards a target while studying the second group of entangled particles to determine what happened to the first group. The potential advantages of this approach would be enormous, since it would allow for extremely low-energy detection of approaching enemy craft. Unlike conventional radar, which relies on an ability to analyze and detect a sufficiently strong signal return, quantum radar would let us directly observe what happened to a specific group of photons. Since we haven’t invented cloaking devices just yet, this would seem to obviate a great deal of investment in various stealth technologies.

My suggestion is that if you're a physics graduate, this is too simple to debunk. Let's see analysis from QM rookies.

Also, if there really is such a functional thing as quantum radar, perhaps someone could provide a real description of how it works.
 
Physics news on Phys.org
  • #4
Seems plausible enough to me. Not the way the news story butchers it of course, but just the concept "radar gets better with entanglement".

A simplification of the radar 'problem' is "I send out a qubit A. Some qubit comes back. It might be A or it might be some noise qubit C. Which is it?".

If you use a qubit A in a pure state, like ##|0\rangle## or ##|0\rangle+|1\rangle##, then you can distinguish it from a noise qubit C with about 75% fidelity. That's because about half of noise qubits will give a wrong measurement result that gives them away, and then you get another half by just randomly guessing, leaving only 25% wrong. We can compute this easily by using the trace distance, which is 0.5 for A [a pure state] vs C [the maximally mixed state].

But now let's use a signal qubit that's entangled with a kept-at-home qubit B.

The trace distance between an EPR pair AB, and the "some noise qubit got into my EPR" pair CB is 0.75. Then random guessing gets us up to succeeding 87.5% of the time.

So entanglement does provide an advantage. If you think of distinguishing A from C (or AB from CB) as a noisy channel, like someone trying to send you a message by having a plane present or not, then adding B to the system increased the bandwidth from ~0.19 bits per attempt up to ~0.46 bits per attempt.

Of course it only starts getting really crazy when you start throwing in counterfactual-bomb-detector stuff, augmented with Grover's algorithm, to make negligible the chance of the enemy plane detecting it's being pinged.

Python code:

Code:
import numpy as np
import math

def trace_dist(A, B):
  return sum(np.abs(np.linalg.eig(A-B)[0]))*0.5

def prob_distinguish(A, B):
  return trace_dist(A, B)*0.5 + 0.5

def H(p):
  q = 1-p
  return -p*math.log(p, 2) - q*math.log(q, 2)

I2 = np.eye(2)/2
I4 = np.eye(4)/4
EPR = np.mat([[1,0,0,1],[0,0,0,0],[0,0,0,0],[1,0,0,1]])/2.0
Z=np.mat([[1,0],[0,0]])
X=np.mat([[1,1],[1,1]])/2.0

print(prob_distinguish(I2, Z))
# 0.75
print(prob_distinguish(I4, EPR))
# 0.875
print(1 - H(0.75))
# 0.18872187554086717
print(1 - H(0.875))
# 0.4564355568004036

The wikipedia page Quantum Radar gives some good references. For example, one is by Seth Lloyd: Enhanced Sensitivity of Photodetection via Quantum Illumination, Science 321, 1463-1465 (2008) ([4])]).
 
Last edited:
  • #5
The descriptions provided in the news articles do not mention anything about receiving radar returns. At least by my reading, they imply that the information is being deduced solely from the "B" photons. That's the part that is wrong.
 
  • #6
.Scott said:
The descriptions provided in the news articles do not mention anything about receiving radar returns. At least by my reading, they imply that the information is being deduced solely from the "B" photons. That's the part that is wrong.

Well, yeah. But news articles get that kind of fundamental thing wrong every time they mention anything quantum. They're basically never worth reading; you have to go the source.

The underlying concept "make radar better with entanglement" is meaningful. Doing it without bouncing the photons back is obviously junk. It would violate the no-communication theorem.
 
  • #7
Last edited:

1. Is the QM Radar technology real or fake?

The QM Radar technology is currently in development and has not yet been proven to be effective. Therefore, it is not yet considered a legitimate technology and should be approached with caution.

2. Can the QM Radar technology really detect objects through walls?

There is currently no scientific evidence to support the claim that the QM Radar technology can detect objects through walls. This claim is based on theoretical concepts and has not been successfully demonstrated in practical applications.

3. Are there any studies or research to support the claims made about QM Radar?

At this time, there are no published studies or research that provide evidence for the effectiveness of QM Radar technology. Until there is solid scientific evidence, the claims about this technology should be approached with skepticism.

4. What makes QM Radar different from other radar technologies?

QM Radar technology claims to use quantum mechanics principles to detect objects, while traditional radar technologies use electromagnetic waves. However, there is currently no evidence to support the effectiveness of QM Radar over traditional radar technologies.

5. Can QM Radar be used for military or surveillance purposes?

There is currently no evidence to suggest that QM Radar can be used for military or surveillance purposes. The technology is still in development and has not yet been proven to be effective in any practical applications.

Similar threads

  • Quantum Physics
Replies
3
Views
1K
  • Sci-Fi Writing and World Building
Replies
3
Views
2K
  • Quantum Physics
Replies
1
Views
1K
Replies
3
Views
1K
Replies
3
Views
635
  • Quantum Physics
Replies
32
Views
2K
Replies
80
Views
4K
  • Quantum Physics
7
Replies
225
Views
11K
  • Quantum Physics
Replies
5
Views
769
Replies
6
Views
1K
Back
Top