Modeling Quantum Teleportation with Quantum Tools in Python (QuTiP)

Size: px
Start display at page:

Download "Modeling Quantum Teleportation with Quantum Tools in Python (QuTiP)"

Transcription

1 ARL-TR-8260 DEC 2017 US Army Research Laboratory Modeling Quantum Teleportation with Quantum Tools in Python (QuTiP) by MG Hager, BT Kirby, and M Brodsky

2 NOTICES Disclaimers The findings in this report are not to be construed as an official Department of the Army position unless so designated by other authorized documents. Citation of manufacturer s or trade names does not constitute an official endorsement or approval of the use thereof. Destroy this report when it is no longer needed. Do not return it to the originator.

3 ARL-TR-8260 DEC 2017 US Army Research Laboratory Modeling Quantum Teleportation with Quantum Tools in Python (QuTiP) by BT Kirby and M Brodsky Computational and Information Sciences Directorate, ARL MG Hager Cornell University, Ithaca, NY

4 REPORT DOCUMENTATION PAGE Form Approved OMB No Public reporting burden for this collection of information is estimated to average 1 hour per response, including the time for reviewing instructions, searching existing data sources, gathering and maintaining the data needed, and completing and reviewing the collection information. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing the burden, to Department of Defense, Washington Headquarters Services, Directorate for Information Operations and Reports ( ), 1215 Jefferson Davis Highway, Suite 1204, Arlington, VA Respondents should be aware that notwithstanding any other provision of law, no person shall be subject to any penalty for failing to comply with a collection of information if it does not display a currently valid OMB control number. PLEASE DO NOT RETURN YOUR FORM TO THE ABOVE ADDRESS. 1. REPORT DATE (DD-MM-YYYY) December TITLE AND SUBTITLE 2. REPORT TYPE Technical Report Modeling Quantum Teleportation with Quantum Tools in Python (QuTiP) 3. DATES COVERED (From - To) June 1, 2017 July 31, a. CONTRACT NUMBER 5b. GRANT NUMBER 5c. PROGRAM ELEMENT NUMBER 6. AUTHOR(S) MG Hager, BT Kirby, and M Brodsky 5d. PROJECT NUMBER 5e. TASK NUMBER 5f. WORK UNIT NUMBER 7. PERFORMING ORGANIZATION NAME(S) AND ADDRESS(ES) 8. PERFORMING ORGANIZATION REPORT NUMBER US Army Research Laboratory ATTN: RDRL-CIN-T ARL-TR Powder Mill Road Adelphi, MD SPONSORING/MONITORING AGENCY NAME(S) AND ADDRESS(ES) 10. SPONSOR/MONITOR'S ACRONYM(S) 11. SPONSOR/MONITOR'S REPORT NUMBER(S) 12. DISTRIBUTION/AVAILABILITY STATEMENT 13. SUPPLEMENTARY NOTES 14. ABSTRACT The unique properties, notations, and conventions of quantum mechanics can make it challenging to properly simulate using traditional software packages. For this reason, several specialized software packages designed for this purpose have recently been released. In this technical report we evaluate one in particular, the Quantum Tools in Python (QuTiP) package, to determine its suitability for use in the simulation of quantum networking protocols. We approach this problem by using QuTiP to implement quantum teleportation, a basic quantum networking operation. We found that QuTiP is technically sound in that it is able to reproduce several published findings, and that it saves significant program design time due to its large library of preprogrammed functions. The only inconvenience we found was that it is only capable of numerical simulation. For these reasons we conclude that QuTiP is a powerful and useful tool for quick tests, and potentially even large numerical simulations. 15. SUBJECT TERMS quantum teleportation, quantum information, quantum networking, quantum physics, quantum communication, Bell inequality, Bell nonlocality, computational physics, QuTiP 17. LIMITATION 18. NUMBER 19a. NAME OF RESPONSIBLE PERSON 16. SECURITY CLASSIFICATION OF: OF OF Brian Kirby ABSTRACT PAGES a. REPORT b. ABSTRACT c. THIS PAGE 19b. TELEPHONE NUMBER (Include area code) UU 26 Unclassified Unclassified Unclassified ii Standard Form 298 (Rev. 8/98) Prescribed by ANSI Std. Z39.18

5 Contents List of Figures List of Tables Acknowledgments iv iv v 1. Introduction 1 2. Quantum Teleportation 1 3. Implementation 5 4. Teleporting Pure States 7 5. Teleporting Mixed States 9 6. Conclusion and Discussion References 14 List of Symbols, Abbreviations, and Acronyms 17 Distribution List 18 iii

6 List of Figures Fig. 1 Diagram of the teleportation protocol... 2 Fig. 2 Fig. 3 Fig. 4 Fig. 5 Fig. 6 Fig. 7 Fig. 8 Isotropic resource state parameter p vs. the concurrence of the isotropic state. The vertical lines are placed at pp = 1, pp 0.66 and 3 pp = 1/ Isotropic resource state parameter p vs. the fidelity of a teleported message. The vertical lines are placed at pp = 1, pp 0.66 and pp = 3 1/ 2. The horizontal lines are given by FF = 1 and FF = Concurrence of an isotropic resource state vs. the fidelity of a teleported message. The horizontal lines are given by FF = 1 2 and FF = Output fidelity vs. concurrence of isotropic resource state. Input states are randomly generated mixed states. The horizontal lines are given by FF = 1 and FF = Average output fidelity vs. concurrence of isotropic resource state. Input states are randomly generated mixed states. The horizontal lines are given by FF = 1 and FF = Fidelity vs. p parameter of isotropic resource states for mixed input states ρ q. The vertical lines are placed at pp = 1, pp 0.66 and pp = 3 1/ 2. The horizontal lines are given by FF = 1 and FF = Summer intern Mary Grace Hager teams up with midshipman Drew Weninger to learn how to operate the ARL quantum network test-bed List of Tables Table 1 Bob s output states and the corresponding corrective local unitary operations... 4 iv

7 Acknowledgments Research was sponsored by the US Army Research Laboratory (ARL) and was accomplished under Cooperative Agreement Number W911NF The views and conclusions contained in this document are those of the authors and should not be interpreted as representing the official policies, either expressed or implied, of ARL or the US Government. The US Government is authorized to reproduce and distribute reprints for government purposes notwithstanding any copyright notation herein. v

8 INTENTIONALLY LEFT BLANK. vi

9 1. Introduction Quantum mechanics and applications that rely on quantum principles to operate, such as quantum computing, quantum networking, and quantum cryptography, can be difficult to analyze computationally using commonly available software packages. One reason for this is the lack of native functions that are relevant to quantum problems. A second is that notational conventions in physics and computer science differ and can cause confusion. To facilitate the use of computers for the analysis of quantum operations, several software packages created solely for this purpose have recently been released. Some examples include Quantum Tools in Python (QuTiP) (Nation and Johansson 2017), Quantum Entanglement Theory Laboratory (QETLAB) (Johnston 2016), and Forest (Dekant 2017). In this technical report we will evaluate the utility of QuTiP for the simulation of quantum networking operations by digitally modeling quantum teleportation (Bennett et al. 1993). We will then use this model to reproduce published results related to quantum teleportation when imperfect resource states are used, as well as graph-related metrics, such as fidelity, average fidelity, concurrence, and purity. Specifically, we numerically model the situation where the shared resource is a 2-qubit isotropic state. This scenario is especially interesting because isotropic states can be separable, entangled, or nonlocal, and each of these regimes has published results that can be verified. We further use our program to study the teleportation of mixed input states, which is closely related to entanglement swapping. This report is organized as follows. In Section 2 we review the quantum teleportation protocol as well as several related results. In Section 3 we describe some specific aspects of QuTiP, and how teleportation was implemented within it. We then use our teleportation program to teleport pure states in Section 4 and mixed states in Section Quantum Teleportation Quantum teleportation has been a widely researched topic due to its applications in quantum information processing. Despite the colloquial definition, the word teleportation in this context means that the quantum state of one particle is being transferred to another particle, and not the transfer of the particle itself. As initially proposed by Bennett et al. (1993), the only resources required for the transfer of the quantum state from one party ( Alice ) to another ( Bob ) is a pre-shared Bell state between the 2 parties and a classical channel over which Alice can send 2 bits of classical information to Bob. An illustration of this protocol is provided in Fig. 1. 1

10 Interestingly, this protocol still functions when both users are unaware of what state is being teleported. Fig. 1 Diagram of the teleportation protocol As 2 classical bits are insufficient to determine the state of a qubit, it is clear that the shared Bell state plays an important role in the transfer of information. One way to investigate this is to determine how successful teleportation is when imperfectly entangled and mixed states are used as the shared resource instead of a Bell state. To compare these situations, a measure called fidelity is used (Popescu 1994), which is defined as follows: If Alice wishes to teleport state χχ and, after teleportation, Bob is left with a possibly mixed state ρρ BB, then the fidelity of the teleportation is defined as FF = χχ ρρ BB χχ. Since this expression will generally depend on the initial state χχ, we define the average fidelity FF, which is FF averaged uniformly over all possible pure input states. Recently, much work has been devoted to determining the bounds on the average fidelity for different resource states. The original quantum teleportation protocol has FF = 1, which means that the correspondence between the initial state to be teleported and the state remaining at the end of the protocol is perfect (Popescu 1994). However, if Alice and Bob cannot communicate at all, the best Bob can do is guess, which will result in an average fidelity between Alice s and Bob s states of 1/2 (Popescu 1994). Next, we ask what the average fidelity is if Alice and Bob are restricted to only the classical channel. This corresponds to the original teleportation protocol, but without the shared entangled resource state. In this case, the average fidelity achievable is FF = 2/3 and can be attained by having Alice measuring the state to be teleported along an arbitrary direction (but agreed upon with Bob) and Bob preparing a state in the corresponding direction 2

11 (Popescu 1994). From this, any shared resource state between Alice and Bob that results in an average fidelity of FF > 2/3 is considered to be useful for teleportation (Horodecki et al. 1996). It has been shown that any state that violates Bell s inequality is a useful resource state for teleportation (Horodecki et al. 1996). Interestingly, the opposite is not necessarily true. Just because a state is useful for teleportation does not mean that it is nonclassical (Popescu 1994). In other words, states have been found which admit a local description, but still result in average teleportation fidelity above 2/3 (Popescu 1994, Gisin 1996, Barrett 2001). Many of these results will be reproduced using isotropic states in the following sections. We now discuss the teleportation scheme in more detail. Our presentation closely follows that of Rieffel and Polak (2011), but was originally introduced by Bennett et al. (1993). As mentioned above, the goal of quantum teleportation is to transfer a quantum state from one user (called Alice) to another (called Bob) using only a classical channel and a shared entangled resource state. In the original protocol, the shared resource state is a fully entangled Bell pair, which we will write as φφ + = 1 ( ), (1) 2 where 0 and 1 form an orthonormal basis. In this same basis, we can express a general state to be teleported as χχ = aa 0 + bb 1, (2) with a and b complex numbers that satisfy aa 2 + bb 2 = 1. Together, the initial state of the entire system can then be expressed as χχ φφ + = 1 (aa aa bb bb 111 ), (3) 2 where the notation has Alice s 2 initial qubits first and Bob s last in each bracket. The protocol then begins with Alice performing a Bell state measurement on her 2 qubits and recording the result. A Bell state measurement is an entangling operation that projects the state of 2 qubits onto 1 of the 4 Bell states. In terms of basic quantum gates, this can be achieved using a controlled NOT gate (CNOT gate) followed by a Hadamard transformation and measurements in the standard basis. The Hadamard transformation is a single qubit operation that can be written as HH = 1 ( ), (4) 2 which operationally takes a single qubit to a superposition. A CNOT gate is a 2-qubit gate and can be written as 3

12 CCCCCCCC = (5) We see that this operator flips the state of a second qubit if the first qubit is in state 1. The application of these 2 gates to Alice s qubits can be written as (HH II II)(CCCCCCCC II)( χχ φφ + ) = 1 00 (aa 0 + bb 1 ) + 01 (aa bb 0 ) + 10 (aa 0 bb 1 ) + 11 (aa 1 bb 0 ), (6) where I is the identity. We can see from this that a projection of Alice s 2 qubits onto the standard basis will project Bob s state onto one of the four 2-qubit states shown in the first column of Table 1. Table 1 Bob s output states and the corresponding corrective local unitary operations ρρ BB aa 0 + bb 1 aa 1 + bb 0 aa 0 bb 1 aa 1 bb 0 Corrective operation II σσ XX σσ ZZ iiii YY The second column of Table 1 lists what single qubit gate, if applied to Bob s state, would transform it into χχ. By performing this measurement Alice knows which of these 4 states is in Bob s possession and uses the classical channel to send 2 bits of information to Bob letting him know which corrective operation he should apply to recover χχ. It is noteworthy that Alice s message qubit is now effectively destroyed and thus its reconstruction by Bob does not violate the No Cloning Principle. As described, the state Bob ends up with will be an exact duplicate of χχ. However, any number of factors, such as the entanglement of the resource state and the purity of the inputted message, may cause Bob s final output qubit to differ to an extent from Alice s original input. We will numerically investigate these possibilities in later sections. 4

13 3. Implementation In this section we describe how we digitally simulated the quantum teleportation protocol using the QuTiP package for Python, and discuss some of the preprogrammed functions we found most useful. Operationally, our program functions as described in the previous section in the sense that it takes as an input state to be teleported (or generates its own randomly), applies the CNOT and Hadamard gates, performs a measurement, and finally applies the corrective unitary to the final qubit. For simplicity we often set the program to project onto a specific Bell measurement output so that Bob s corrective operation was fixed. This was done to speed up the program and make it easier to check for errors; however, it is also experimentally motivated by the fact that with linear optics the ψψ projection can be implemented with only a beamsplitter and 2 detectors. Our teleportation model, as well as QuTiP itself, is built upon the quantum object class Qobj, a data type that includes the fields dimension, shape, and data in matrix representation. This structure is used as the basis of our program and all states and operators are built using this representation. Specific states were created using the following basic elements: the basis function, which allows for the creation of Fock states; the dag function, which finds the adjoint of a quantum object; and the tensor function, which finds the tensor product of 2 input operators. Since we are mostly interested in teleporting random input states, rather than a specific input state, it was important for us to be able to produce random pure and mixed density matrices. To accomplish this we can use Numpy s random to choose vectors either along the surface of the Bloch sphere (for pure states) or throughout the entire sphere (for mixed states). While this method is straightforward, to improve performance we can also use the rand_dm(n) function, which creates a random density matrix of n dimensions. The gate operations are performed using the built-in functions cnot and hadamard- _transform, which implement the CNOT gate and Hadamard gate, respectively. After these and the projections onto measurement states, the tracing out of the measured qubits is performed using ptrace. All of our numerical tests are performed with isotropic mixed states as the entangled state resource. These states, which are given by pp φφ + φφ pp 4 II 4, (7) where 1/3 pp 1 and II 4 (Werner 1989; Horodecki and Paweł 1999) form the identity matrix of dimension 4. We note that these states are equivalent for 2 qubits, 5

14 up to local rotations, to the more familiar Werner states (Werner 1989). Also, in what follows we will restrict the range of the isotropic state to 0 pp 1, since this captures the interesting regions of the function and allows us to more easily interface with published results. In QuTiP the isotropic state of 2 qubits can be easily created using functions already described. The reason we focus on these states is because they can range from separable, to entangled, to nonlocal, depending on the value of p. To demonstrate the ease at which we can increment the concurrence of these states we have created Fig. 2, which plots the concurrence of the state as a function of p. We note that when 0 pp 1/3, the concurrence of the isotropic state is 0 and the state is not entangled, and when pp > 1/3, it is entangled with a concurrence given by CC = (3/2)pp 1/2. The state also violates the Clauser, Horne, Shimony, and Holt (CHSH) equality (a form of the Bell inequality) when pp > 1/ 2. The region between when the state becomes entangled and when it violates the CHSH inequality is less understood. When considering local projective measurements, it was shown by Werner (1989) that a local hidden variable model exists when pp 1/2, and this bound was subsequently extended to pp 0.66 by Acin (2006). Therefore, there is a region between 1/3 < pp 0.66 where the state is entangled but local. These 3 important values, pp = 1 3, pp 0.66 and = 1/ 2, are marked by vertical lines in Fig. 2. For an overview of recent progress on bounding the value of p needed to reveal nonlocality see Brunner (2014). In order to generate graphs numerically, we use QuTiP s metrics module. We use the concurrence function to find the concurrence of the isotropic resource state, and the fidelity function to measure the fidelity between the input state and the final state in Bob s possession. We rounded these metrics to 5 decimal places as this sufficiently met our needs and eliminated incongruities due to rounding in earlier computations. We also note that, in order to match the conventional definition, we have to square the output of the fidelity function (Nielsen and Chuang 2002). 6

15 Fig. 2 Isotropic resource state parameter p vs. the concurrence of the isotropic state. The vertical lines are placed at pp = 11, pp and pp = 11/ Teleporting Pure States We begin by investigating the teleportation fidelity as a function of the p parameter of an isotropic resource state by generating multiple instances of the teleportation protocol and creating a point plot. In this special case of a pure input state and an isotropic resource state, the fidelity and average fidelity are equivalent and hence we only need to plot 1 point for each p of the isotropic state (Bandyopadhyay and Sanders 2006). The resulting plot is shown in Fig. 3, and has 1 point for every.01 change in p. For convenient comparison to Fig. 2, we have also included the vertical lines of Fig. 2, which demarcate the regions where the isotropic state is separable, entangled, and nonlocal. Additionally we have included 2 horizontal dashed lines, the green one at a fidelity of 1/2, representing the achievable fidelity if there were no channel between Alice and Bob, and the second red dashed line at a fidelity of 2/3, the maximum achievable when Alice and Bob only share a classical channel. Further explanation for these fidelities is given in Section 2. 7

16 Fig. 3 Isotropic resource state parameter p vs. the fidelity of a teleported message. The vertical lines are placed at pp = 11, pp and pp = 11/ 22. The horizontal lines are given by 33 FF = and FF = The values we see in Fig. 3 are in line with our expectations. While the isotropic state is separable (pp 1/3), the fidelity is bounded by 2/3, which is the maximum possible with only a classical channel. More generally, this plot fits the predictions of Bandyopadhyay and Sanders (2006), which derived for the expression FF = pp 2 (8) for the teleportation fidelity when an isotropic state is used as the resource. An intriguing aspect of this plot and the expression above is that we see there are regions where the isotropic state is useful for teleportation FF > 2, but that the 3 isotropic state itself admits a local model (pp 0.66). It is precisely this observation that indicates that nonlocality and usefulness for teleportation are not equivalent. We see that it is in fact entanglement which is necessary for teleportation fidelities greater than 2/3, but not necessarily nonlocality. To emphasize the importance of entanglement, but not necessarily nonlocality, to teleportation, we have also created Fig. 4. Here, we plot the teleportation fidelity as a function of the concurrence of the isotropic resource state. For emphasis, we have added the same green and red dashed lines as in Fig. 3. It is important to note that when the concurrence (C) is greater than zero, the isotropic resource state is entangled but not necessarily nonlocal. This fits with the conclusion found from Fig. 4 that entanglement is the essential ingredient for teleportation to be useful and not nonlocality. We will now connect Fig. 4 to results found in the literature. A direct application of the analysis found in Roa et al. (2016) to the isotropic state we are considering 8

17 here results in the following expression for the fidelity of a transported state when the concurrence (C) of the isotropic state is greater than zero (pp > 1/3): FF = CC 3. (9) This matches up to the regions of Fig. 4, where 0 < CC 1. Additionally, it can be shown directly from the analysis by Roa et al. that for the region where C=0 (0 pp 1/3), the fidelity is given by FF = CC 3, (10) where CC = (3pp 1)/3. We note that when pp > 1/3, CC = CC. Fig. 4 Concurrence of an isotropic resource state vs. the fidelity of a teleported message. The horizontal lines are given by FF = 11 and FF = Teleporting Mixed States More realistically, the state to be teleported will not be pure but mixed; we also modeled this scenario. This requires a more general definition of teleportation fidelity than the one introduced in Section 2, because now both states can be mixed, instead of just the output state as assumed in the original definition. Here we use the analogous definition where fidelity is calculated between 2 different density matrices ρρ and σσ using FF = TTTT ρρσσ ρρ (11) rather than between a density matrix and a pure state (Nielsen and Chuang 2002). The average fidelity is now averaged over all mixed input states as well as pure 9

18 input states. As with the previous section, we assume here that the shared resource state is an isotropic state. To begin with, we have produced Fig. 5 by plotting the output fidelity of the teleportation versus the concurrence of the isotropic resource state. The mixed input states are randomly generated by a QuTiP function as described in Section 3. For each of the 100 horizontal values of concurrence we have run the teleportation protocol 50 independent times and plotted each point. It is clear to see that the possible range of fidelities is bounded below by those of a pure state and above by F=1. In Fig. 6 we have generated a similar plot by averaging the values for each concurrence rather than drawing all points. Again, it is clear that the fidelity is higher on average than that which we saw when plotting for pure states. This can be interpreted as saying that the fidelity of a pure state input and its mixed state output is smaller than the fidelity of a mixed state input and its corresponding mixed state output. Fig. 5 Output fidelity vs. concurrence of isotropic resource state. Input states are randomly generated mixed states. The horizontal lines are given by FF = 11 and FF =

19 Fig. 6 Average output fidelity vs. concurrence of isotropic resource state. Input states are randomly generated mixed states. The horizontal lines are given by FF = 11 and FF = To investigate this phenomenon in a more controlled fashion we define a single qubit state, which is parameterized as follows ρρ qq = qq( ωω ωω ) + (1 qq)(ii 2 ), (12) where II 2 is the identity matrix of dimension 2 and ωω = 1 ( ). (13) 2 We see that when q=1, the state is a totally pure superposition of the basis vectors and when q=0, it is in a totally mixed state. Using this state, we have created Fig. 7, which plots the teleportation fidelity as a function of the isotropic states p parameter for 100 horizontal values of p and 10 different values of q. We conclude from this short investigation into the teleportation of mixed states that, since it would generally be expected that the quality of teleportation will decline as the purity of the input state decreases, fidelity may not be the appropriate metric to study this scenario. This notion merits further investigation. 11

20 Fig. 7 Fidelity vs. p parameter of isotropic resource states for mixed input states ρρ qq. The vertical lines are placed at pp = 11, pp and pp = 11/ 22. The horizontal lines are given by 33 FF = and FF = Conclusion and Discussion Modern technologies such as QuTiP make it possible to model fundamental aspects of quantum mechanics, including quantum teleportation. The conclusions derived can widely span fields including quantum networking, quantum information, and quantum computing, and can directly influence experimental work, such as the ongoing construction of our quantum networking test-bed at the US Army Research Laboratory (ARL), pictured in Fig. 8. With a simple Python program built using the Quantum Tools in Python package, we were able to reproduce several published theoretical results. Thus, QuTiP proved useful and reliable for modeling quantum phenomena. We also found QuTiP to significantly reduce the time required to design and implement quantum protocols due to the large number of preprogrammed functions and the fact that the notation used in these functions is that of quantum mechanics. We chose QuTiP for our modeling because it is one of the largest and best maintained quantum software packages; however, it is not necessarily optimized for the application we chose, since its main purpose is the modeling of open quantum systems. We note this because, although it is not advertised to have this feature, we found the lack of an analytical solver to be inconvenient. The authors think that QuTiP is a useful tool and hope that such techniques as described here will continue to be used to advance our knowledge of quantum behaviors. 12

21 Fig. 8 Summer intern Mary Grace Hager teams up with midshipman Drew Weninger to learn how to operate the ARL quantum network test-bed 13

22 7. References Acín A, Gisin N, Toner B. Grothendieck s constant and local models for noisy entangled quantum states. Phys Rev A. 2006;73(6): Bandyopadhyay S, Sanders BC. Quantum teleportation of composite systems via mixed entangled states. Phys Rev A. 2006;74(3): Barrett J. Implications of teleportation for nonlocality. Phys Rev A. 2001;64(4): Bennett CH, Brassard G, Crépeau C, Jozsa R, Peres A, Wootters WK. Teleporting an unknown quantum state via dual classical and Einstein-Podolsky-Rosen channels. Phys Rev Lett. 1993;70(13):1895. Brunner N, Cavalcanti D, Pironio S, Scarani V, Wehner S. Bell nonlocality. Rev Mod Phys. 2014;86(2):419. Dekant H, Tregillus H, Tucci R, Yin T. Python tools for reading, writing, compiling, simulating quantum computer circuits July 27 [accessed 2017 Nov 9]. Gisin N. Nonlocality criteria for quantum teleportation. Phys Lett A. 1996;210(3): Horodecki M, Paweł H. Reduction criterion of separability and limits for a class of distillation protocols. Phys Rev A. 1999;59(6):4206. Horodecki R, Horodecki M, Horodecki P. Teleportation, Bell's inequalities and inseparability. Phys Lett A. 1996;222(1): Johnston N. QETLAB: A MATLAB Toolbox for Quantum Entanglement January 12 [accessed 2017 Nov 9]. Nation P, Johansson R. QuTiP: Quantum Toolbox in Python July 28 [accessed 2017 Nov 9]. Nielsen MA, Chuang I. Quantum computation and quantum information. Cambridge (UK): Cambridge University Press; Popescu S. Bell s inequalities versus teleportation: what is nonlocality? Phys Rev Lett. 1994;72(6):797. Rieffel EG, Polak WH. Quantum computing: A gentle introduction. Cambridge (MA): MIT Press;

23 Roa L, Gómez R, Muñoz A, Rai G, Hecker M. Entanglement thresholds for displaying the quantum nature of teleportation. Ann Phys. 2016;371: Werner RF. Quantum states with Einstein-Podolsky-Rosen correlations admitting a hidden-variable model. Phys Rev A. 1989;40(8):4277. Wiseman HM, Jones SJ, Doherty AC. Steering, entanglement, nonlocality, and the Einstein-Podolsky-Rosen paradox. Phys Rev Lett. 2007;98(14):

24 INTENTIONALLY LEFT BLANK. 16

25 List of Symbols, Abbreviations, and Acronyms ARL CHSH CNOT QETLAB QuTiP US Army Research Laboratory Clauser, Horne, Shimony, and Holt controlled NOT Quantum Entanglement Theory Laboratory Quantum Tools in Python 17

26 1 DEFENSE TECHNICAL (PDF) INFORMATION CTR DTIC OCA 2 DIR ARL (PDF) IMAL HRA RECORDS MGMT RDRL DCL TECH LIB 1 GOVT PRINTG OFC (PDF) A MALHOTRA 2 ARL (PDF) RDRL CIN T B KIRBY M BRODSKY 18

Unitary Transformations in 3-D Vector Representation of Qutrit States

Unitary Transformations in 3-D Vector Representation of Qutrit States ARL-TR-8330 MAR 2018 US Army Research Laboratory Unitary Transformations in 3-D Vector Representation of Qutrit States by Vinod K Mishra NOTICES Disclaimers The findings in this report are not to be construed

More information

Expressions for the Total Yaw Angle

Expressions for the Total Yaw Angle ARL-TN-0775 SEP 2016 US Army Research Laboratory Expressions for the Total Yaw Angle by Benjamin A Breech NOTICES Disclaimers The findings in this report are not to be construed as an official Department

More information

General Atomics Pulsed Power Capacitor Comparison Test Report

General Atomics Pulsed Power Capacitor Comparison Test Report ARL-TR-7350 JULY 2015 US Army Research Laboratory General Atomics Pulsed Power Capacitor Comparison Test Report by Richard L Thomas Approved for public release; distribution unlimited. NOTICES Disclaimers

More information

Preliminary Comparison of March May Radiosonde Soundings with March May Climatological Profiles for Yuma, Arizona

Preliminary Comparison of March May Radiosonde Soundings with March May Climatological Profiles for Yuma, Arizona ARL-TN-0812 FEB 2017 US Army Research Laboratory Preliminary Comparison of March May Radiosonde Soundings with March May Climatological Profiles for Yuma, Arizona by J Cogan and P Haines NOTICES Disclaimers

More information

Predicting Deformation and Strain Behavior in Circuit Board Bend Testing

Predicting Deformation and Strain Behavior in Circuit Board Bend Testing Predicting Deformation and Strain Behavior in Circuit Board Bend Testing by Ronen Aniti ARL-CR-0693 May 2012 prepared by Science and Engineering Apprenticeship Program George Washington University 2121

More information

Quantum Computer Circuit Analysis and Design

Quantum Computer Circuit Analysis and Design Quantum Computer Circuit Analysis and Design by Dr. Howard E. Brandt ARL-TR-470 February 009 Approved for public release; distribution unlimited. NOTICES Disclaimers The findings in this report are not

More information

Hot Environment Assessment Tool (HEAT) User s Guide for Apple Mobile Devices

Hot Environment Assessment Tool (HEAT) User s Guide for Apple Mobile Devices ARL-TR-7347 JULY 2015 US Army Research Laboratory Hot Environment Assessment Tool (HEAT) User s Guide for Apple Mobile Devices by David Sauter Approved for public release; distribution unlimited. NOTICES

More information

Propagation of Statistical Noise Through a Two-Qubit Maximum Likelihood Tomography

Propagation of Statistical Noise Through a Two-Qubit Maximum Likelihood Tomography ARL-TR-8340 APR 2018 US Army Research Laboratory Propagation of Statistical Noise Through a Two-Qubit Maximum Likelihood Tomography by Mary Grace M Hager, Daniel E Jones, Brian T Kirby, and Michael Brodsky

More information

7. PERFORMING ORGANIZATION NAME(S) AND ADDRESS(ES) 8. PERFORMING ORGANIZATION REPORT NUMBER

7. PERFORMING ORGANIZATION NAME(S) AND ADDRESS(ES) 8. PERFORMING ORGANIZATION REPORT NUMBER REPORT DOCUMENTATION PAGE Form Approved OMB No. 0704-0188 The public reporting burden for this collection of information is estimated to average 1 hour per response, including the time for reviewing instructions,

More information

ARL-TN-0748 APR US Army Research Laboratory

ARL-TN-0748 APR US Army Research Laboratory ARL-TN-0748 APR 2016 US Army Research Laboratory Theoretical Prediction of the Heats of Formation, Densities, and Relative Sensitivities for 2-(azidomethyl)-2-nitropropane-1,3-diyl dinitrate (AMDNNM),

More information

Report Documentation Page

Report Documentation Page Report Documentation Page Form Approved OMB No. 0704-0188 Public reporting burden for the collection of information is estimated to average 1 hour per response, including the time for reviewing instructions,

More information

dinitro-3,5-bis N-oxide-bis([1,2,3]triazolo)[4,5- b:5',4'-e]pyrazine, 1,7-dinitro-1,7- dihydrobis([1,2,3]triazolo)[4,5-b:4',5'-e]pyrazine

dinitro-3,5-bis N-oxide-bis([1,2,3]triazolo)[4,5- b:5',4'-e]pyrazine, 1,7-dinitro-1,7- dihydrobis([1,2,3]triazolo)[4,5-b:4',5'-e]pyrazine ARL-TN-0785 SEP 2016 US Army Research Laboratory Theoretical Prediction of the Heats of Formation, Densities, and Relative Sensitivities for 1,7-dinitro- 3,4,5,8-tetra N-oxide-bis([1,2,3]triazolo)[4,5-

More information

ARL-TN-0737 FEB US Army Research Laboratory

ARL-TN-0737 FEB US Army Research Laboratory ARL-TN-0737 FEB 2016 US Army Research Laboratory Theoretical Prediction of the Heats of Formation, Densities, and Relative Sensitivities for 3,7-diamino-2,4,6,8-tetranitro-1,5- diazanaphthalene (DATNP)

More information

REGENERATION OF SPENT ADSORBENTS USING ADVANCED OXIDATION (PREPRINT)

REGENERATION OF SPENT ADSORBENTS USING ADVANCED OXIDATION (PREPRINT) AL/EQ-TP-1993-0307 REGENERATION OF SPENT ADSORBENTS USING ADVANCED OXIDATION (PREPRINT) John T. Mourand, John C. Crittenden, David W. Hand, David L. Perram, Sawang Notthakun Department of Chemical Engineering

More information

AN EMPIRICAL SHAPED CHARGE JET BREAKUP MODEL

AN EMPIRICAL SHAPED CHARGE JET BREAKUP MODEL AD AD-E40 57 Technical Report ARMET-TR-1009 AN EMPIRICAL SHAPED CHARGE JET BREAKUP MODEL Ernest L. Baker James Pham Tan Vuong July 2014 U.S. ARMY ARMAMENT RESEARCH, DEVELOPMENT AND ENGINEERING CENTER Munitions

More information

Contactless Mobility, Carrier Density, and Sheet Resistance Measurements on Si, GaN, and AlGaN/GaN High Electron Mobility Transistor (HEMT) Wafers

Contactless Mobility, Carrier Density, and Sheet Resistance Measurements on Si, GaN, and AlGaN/GaN High Electron Mobility Transistor (HEMT) Wafers ARL-TR-7209 FEB 2015 US Army Research Laboratory Contactless Mobility, Carrier Density, and Sheet Resistance Measurements on Si, GaN, and AlGaN/GaN High Electron Mobility Transistor (HEMT) Wafers by Randy

More information

Quantitation and Ratio Determination of Uranium Isotopes in Water and Soil Using Inductively Coupled Plasma Mass Spectrometry (ICP-MS)

Quantitation and Ratio Determination of Uranium Isotopes in Water and Soil Using Inductively Coupled Plasma Mass Spectrometry (ICP-MS) Quantitation and Ratio Determination of Uranium Isotopes in Water and Soil Using Inductively Coupled Plasma Mass Spectrometry (ICP-MS) D.N. Kurk, T.E. Beegle, S.C. Spence and R.J. Swatski Report Documentation

More information

Exploring Unique Electronic States at Topological Insulator High-Temperature Superconductor Interfaces

Exploring Unique Electronic States at Topological Insulator High-Temperature Superconductor Interfaces ARL-TR-8392 JUNE 2018 US Army Research Laboratory Exploring Unique Electronic States at Topological Insulator High-Temperature Superconductor Interfaces by Patrick Folkes, Patrick Taylor, Charles Rong,

More information

Use of Wijsman's Theorem for the Ratio of Maximal Invariant Densities in Signal Detection Applications

Use of Wijsman's Theorem for the Ratio of Maximal Invariant Densities in Signal Detection Applications Use of Wijsman's Theorem for the Ratio of Maximal Invariant Densities in Signal Detection Applications Joseph R. Gabriel Naval Undersea Warfare Center Newport, Rl 02841 Steven M. Kay University of Rhode

More information

Theoretical Prediction of the Heats of Formation, Densities, and Relative Sensitivities for 5,7-dinitro-5,7-diaza-1,3-dioxabicyclo (3:3:0)octan-2-one

Theoretical Prediction of the Heats of Formation, Densities, and Relative Sensitivities for 5,7-dinitro-5,7-diaza-1,3-dioxabicyclo (3:3:0)octan-2-one ARL-TN-0749 APR 2016 US Army Research Laboratory Theoretical Prediction of the Heats of Formation, Densities, and Relative Sensitivities for 5,7-dinitro-5,7-diaza-1,3-dioxabicyclo (3:3:0)octan-2-one by

More information

Global Stability and Dynamics of Strongly Nonlinear Systems Using Koopman Operator Theory

Global Stability and Dynamics of Strongly Nonlinear Systems Using Koopman Operator Theory ARL-TR-7959 MAR 2017 US Army Research Laboratory Global Stability and Dynamics of Strongly Nonlinear Systems Using Koopman Operator Theory by Bryan Glaz and Adam Svenkeson NOTICES Disclaimers The findings

More information

arxiv: v2 [quant-ph] 21 Oct 2013

arxiv: v2 [quant-ph] 21 Oct 2013 Genuine hidden quantum nonlocality Flavien Hirsch, 1 Marco Túlio Quintino, 1 Joseph Bowles, 1 and Nicolas Brunner 1, 1 Département de Physique Théorique, Université de Genève, 111 Genève, Switzerland H.H.

More information

REDUCING PEAK POWER IN AUTOMATED WEAPON LAYING

REDUCING PEAK POWER IN AUTOMATED WEAPON LAYING AD AD-E403 AD-E403 737 Technical Report ARWSE-TR-15036 REDUCING PEAK POWER IN AUTOMATED WEAPON LAYING Joshua Stapp Matthew Tomik February 2016 U.S. ARMY ARMAMENT RESEARCH, DEVELOPMENT AND ENGINEERING CENTER

More information

Diagonal Representation of Certain Matrices

Diagonal Representation of Certain Matrices Diagonal Representation of Certain Matrices Mark Tygert Research Report YALEU/DCS/RR-33 December 2, 2004 Abstract An explicit expression is provided for the characteristic polynomial of a matrix M of the

More information

Guide to the Development of a Deterioration Rate Curve Using Condition State Inspection Data

Guide to the Development of a Deterioration Rate Curve Using Condition State Inspection Data Guide to the Development of a Deterioration Rate Curve Using Condition State Inspection Data by Guillermo A. Riveros and Elias Arredondo PURPOSE: The deterioration of elements of steel hydraulic structures

More information

Optimizing Robotic Team Performance with Probabilistic Model Checking

Optimizing Robotic Team Performance with Probabilistic Model Checking Optimizing Robotic Team Performance with Probabilistic Model Checking Software Engineering Institute Carnegie Mellon University Pittsburgh, PA 15213 Sagar Chaki, Joseph Giampapa, David Kyle (presenting),

More information

Army Research Laboratory

Army Research Laboratory Army Research Laboratory Air Blast Calculations by Joel B. Stewart ARL-TN-549 July 213 Approved for public release; distribution is unlimited. NOTICES Disclaimers The findings in this report are not to

More information

Crowd Behavior Modeling in COMBAT XXI

Crowd Behavior Modeling in COMBAT XXI Crowd Behavior Modeling in COMBAT XXI Imre Balogh MOVES Research Associate Professor ilbalogh@nps.edu July 2010 831-656-7582 http://movesinstitute.org Report Documentation Page Form Approved OMB No. 0704-0188

More information

Comparative Analysis of Flood Routing Methods

Comparative Analysis of Flood Routing Methods US Army Corps of Engineers Hydrologic Engineering Center Comparative Analysis of Flood Routing Methods September 1980 Approved for Public Release. Distribution Unlimited. RD-24 REPORT DOCUMENTATION PAGE

More information

High-Fidelity Computational Simulation of Nonlinear Fluid- Structure Interaction Problems

High-Fidelity Computational Simulation of Nonlinear Fluid- Structure Interaction Problems Aerodynamic Issues of Unmanned Air Vehicles Fluid-Structure Interaction High-Fidelity Computational Simulation of Nonlinear Fluid- Structure Interaction Problems Raymond E. Gordnier Computational Sciences

More information

Teleportation of Quantum States (1993; Bennett, Brassard, Crepeau, Jozsa, Peres, Wootters)

Teleportation of Quantum States (1993; Bennett, Brassard, Crepeau, Jozsa, Peres, Wootters) Teleportation of Quantum States (1993; Bennett, Brassard, Crepeau, Jozsa, Peres, Wootters) Rahul Jain U. Waterloo and Institute for Quantum Computing, rjain@cs.uwaterloo.ca entry editor: Andris Ambainis

More information

Microwave Circuit Simulator for MATLAB

Microwave Circuit Simulator for MATLAB Microwave Circuit Simulator for MATLAB Romeo D. del Rosario and Daniel C. Judy ARL-TN-184 March 2002 Approved for public release; distribution unlimited. The findings in this report are not to be construed

More information

EPR paradox, Bell inequality, etc.

EPR paradox, Bell inequality, etc. EPR paradox, Bell inequality, etc. Compatible and incompatible observables AA, BB = 0, then compatible, can measure simultaneously, can diagonalize in one basis commutator, AA, BB AAAA BBBB If we project

More information

Analysis Comparison between CFD and FEA of an Idealized Concept V- Hull Floor Configuration in Two Dimensions. Dr. Bijan Khatib-Shahidi & Rob E.

Analysis Comparison between CFD and FEA of an Idealized Concept V- Hull Floor Configuration in Two Dimensions. Dr. Bijan Khatib-Shahidi & Rob E. Concept V- Hull Floor Configuration in Two Dimensions Dr. Bijan Khatib-Shahidi & Rob E. Smith 10 November 2010 : Dist A. Approved for public release Report Documentation Page Form Approved OMB No. 0704-0188

More information

P. Kestener and A. Arneodo. Laboratoire de Physique Ecole Normale Supérieure de Lyon 46, allée d Italie Lyon cedex 07, FRANCE

P. Kestener and A. Arneodo. Laboratoire de Physique Ecole Normale Supérieure de Lyon 46, allée d Italie Lyon cedex 07, FRANCE A wavelet-based generalization of the multifractal formalism from scalar to vector valued d- dimensional random fields : from theoretical concepts to experimental applications P. Kestener and A. Arneodo

More information

REPORT DOCUMENTATION PAGE

REPORT DOCUMENTATION PAGE REPORT DOCUMENTATION PAGE Form Approved OMB No. 0704-0188 Public reporting burden for this collection of information is estimated to average 1 hour per response, including the time for reviewing instructions,

More information

REPORT DOCUMENTATION PAGE

REPORT DOCUMENTATION PAGE REPORT DOCUMENTATION PAGE Form Approved OMB NO. 0704-0188 The public reporting burden for this collection of information is estimated to average 1 hour per response, including the time for reviewing instructions,

More information

Nano and Biological Technology Panel: Quantum Information Science

Nano and Biological Technology Panel: Quantum Information Science 26 th US Army Science Conference, Orlando 3 December 2008 Nano and Biological Technology Panel: Quantum Information Science Professor Andrew Dzurak NSW Manager, Centre for Quantum Computer Technology NSW

More information

AIR FORCE RESEARCH LABORATORY Directed Energy Directorate 3550 Aberdeen Ave SE AIR FORCE MATERIEL COMMAND KIRTLAND AIR FORCE BASE, NM

AIR FORCE RESEARCH LABORATORY Directed Energy Directorate 3550 Aberdeen Ave SE AIR FORCE MATERIEL COMMAND KIRTLAND AIR FORCE BASE, NM AFRL-DE-PS-JA-2007-1004 AFRL-DE-PS-JA-2007-1004 Noise Reduction in support-constrained multi-frame blind-deconvolution restorations as a function of the number of data frames and the support constraint

More information

Mine Burial Studies with a Large Oscillating Water-Sediment Tunnel (LOWST)

Mine Burial Studies with a Large Oscillating Water-Sediment Tunnel (LOWST) Mine Burial Studies with a Large Oscillating Water-Sediment Tunnel (LOWST) Marcelo H. Garcia Department of Civil and Environmental Engineering University of Illinois at Urbana-Champaign 205 North Mathews

More information

REPORT DOCUMENTATION PAGE

REPORT DOCUMENTATION PAGE REPORT DOCUMENTATION PAGE Form Approved OMB No. 0704-0188 The public reporting burden for this collection of information is estimated to average 1 hour per response, including the time for reviewing instructions,

More information

Is Entanglement Sufficient to Enable Quantum Speedup?

Is Entanglement Sufficient to Enable Quantum Speedup? arxiv:107.536v3 [quant-ph] 14 Sep 01 Is Entanglement Sufficient to Enable Quantum Speedup? 1 Introduction The mere fact that a quantum computer realises an entangled state is ususally concluded to be insufficient

More information

Design for Lifecycle Cost using Time-Dependent Reliability

Design for Lifecycle Cost using Time-Dependent Reliability Design for Lifecycle Cost using Time-Dependent Reliability Amandeep Singh Zissimos P. Mourelatos Jing Li Mechanical Engineering Department Oakland University Rochester, MI 48309, USA : Distribution Statement

More information

Metrology Experiment for Engineering Students: Platinum Resistance Temperature Detector

Metrology Experiment for Engineering Students: Platinum Resistance Temperature Detector Session 1359 Metrology Experiment for Engineering Students: Platinum Resistance Temperature Detector Svetlana Avramov-Zamurovic, Carl Wick, Robert DeMoyer United States Naval Academy Abstract This paper

More information

USER S GUIDE. ESTCP Project ER

USER S GUIDE. ESTCP Project ER USER S GUIDE Demonstration of a Fractured Rock Geophysical Toolbox (FRGT) for Characterization and Monitoring of DNAPL Biodegradation in Fractured Rock Aquifers ESTCP Project ER-201118 JANUARY 2016 F.D.

More information

Modulation Instability of Spatially-Incoherent Light Beams and Pattern Formation in Incoherent Wave Systems

Modulation Instability of Spatially-Incoherent Light Beams and Pattern Formation in Incoherent Wave Systems Modulation Instability of Spatially-Incoherent Light Beams and Pattern Formation in Incoherent Wave Systems Detlef Kip, (1,2) Marin Soljacic, (1,3) Mordechai Segev, (1,4) Evgenia Eugenieva, (5) and Demetrios

More information

Report Documentation Page

Report Documentation Page Inhibition of blood cholinesterase activity is a poor predictor of acetylcholinesterase inhibition in brain regions of guinea pigs exposed to repeated doses of low levels of soman. Sally M. Anderson Report

More information

The Bernoulli equation in a moving reference frame

The Bernoulli equation in a moving reference frame IOP PUBLISHING Eur. J. Phys. 3 (011) 517 50 EUROPEAN JOURNAL OF PHYSICS doi:10.1088/0143-0807/3//0 The Bernoulli equation in a moving reference frame Carl E Mungan Physics Department, US Naval Academy

More information

Attribution Concepts for Sub-meter Resolution Ground Physics Models

Attribution Concepts for Sub-meter Resolution Ground Physics Models Attribution Concepts for Sub-meter Resolution Ground Physics Models 76 th MORS Symposium US Coast Guard Academy Approved for public release distribution. 2 Report Documentation Page Form Approved OMB No.

More information

NUMERICAL SOLUTIONS FOR OPTIMAL CONTROL PROBLEMS UNDER SPDE CONSTRAINTS

NUMERICAL SOLUTIONS FOR OPTIMAL CONTROL PROBLEMS UNDER SPDE CONSTRAINTS NUMERICAL SOLUTIONS FOR OPTIMAL CONTROL PROBLEMS UNDER SPDE CONSTRAINTS AFOSR grant number: FA9550-06-1-0234 Yanzhao Cao Department of Mathematics Florida A & M University Abstract The primary source of

More information

Babylonian resistor networks

Babylonian resistor networks IOP PUBLISHING Eur. J. Phys. 33 (2012) 531 537 EUROPEAN JOURNAL OF PHYSICS doi:10.1088/0143-0807/33/3/531 Babylonian resistor networks Carl E Mungan 1 and Trevor C Lipscombe 2 1 Physics Department, US

More information

CRS Report for Congress

CRS Report for Congress CRS Report for Congress Received through the CRS Web Order Code RS21396 Updated May 26, 2006 Summary Iraq: Map Sources Hannah Fischer Information Research Specialist Knowledge Services Group This report

More information

Broadband matched-field source localization in the East China Sea*

Broadband matched-field source localization in the East China Sea* Broadband matched-field source localization in the East China Sea* Renhe Zhang Zhenglin Li Jin Yan Zhaohui Peng Fenghua Li National Laboratory of Acoustics, Institute of Acoustics, Chinese Academy of Sciences,

More information

Two-Dimensional Simulation of Truckee River Hydrodynamics

Two-Dimensional Simulation of Truckee River Hydrodynamics Two-Dimensional Simulation of Truckee River Hydrodynamics by Stephen H. Scott PURPOSE: The purpose of this Coastal and Hydraulics Engineering Technical Note (CHETN) is to demonstrate the use of multidimensional

More information

SWELL RATIO TESTER REPORT FY 2003

SWELL RATIO TESTER REPORT FY 2003 Indian Head Division IHTR 2654 Naval Surface Warfare Center 24 September 2004 Indian Head, MD 20640-5035 SWELL RATIO TESTER REPORT FY 2003 Ralph Gamba Approved for public release; distribution is unlimited.

More information

Comparison of V 50 Shot Placement on Final Outcome

Comparison of V 50 Shot Placement on Final Outcome Comparison of V 50 Shot Placement on Final Outcome by R Kinsler and J Collins ARL-RP-0506 November 2014 A reprint from Proceedings of the PASS 2012 Personal Armour Systems Symposium, Nuremberg, Germany,

More information

System Reliability Simulation and Optimization by Component Reliability Allocation

System Reliability Simulation and Optimization by Component Reliability Allocation System Reliability Simulation and Optimization by Component Reliability Allocation Zissimos P. Mourelatos Professor and Head Mechanical Engineering Department Oakland University Rochester MI 48309 Report

More information

Solubility of RDX, PETN, and Boric Acid in Methylene Chloride

Solubility of RDX, PETN, and Boric Acid in Methylene Chloride Solubility of RDX, PETN, and Boric Acid in Methylene Chloride by Rose Pesce-Rodriguez ARL-TN-0401 August 2010 Approved for public release; distribution unlimited. NOTICES Disclaimers The findings in this

More information

Closed-form and Numerical Reverberation and Propagation: Inclusion of Convergence Effects

Closed-form and Numerical Reverberation and Propagation: Inclusion of Convergence Effects DISTRIBUTION STATEMENT A. Approved for public release; distribution is unlimited. Closed-form and Numerical Reverberation and Propagation: Inclusion of Convergence Effects Chris Harrison Centre for Marine

More information

Molecular Characterization and Proposed Taxonomic Placement of the Biosimulant 'BG'

Molecular Characterization and Proposed Taxonomic Placement of the Biosimulant 'BG' Molecular Characterization and Proposed Taxonomic Placement of the Biosimulant 'BG' S.A. Burke 1, J.W. Wright 2, M.K. Robinson, B. Bronk 3, and R.L. Warren 1 1 Battelle Dugway Operations 2 U.S. Army Soldier

More information

Report Documentation Page

Report Documentation Page Report Documentation Page Form Approved OMB No. 0704-0188 Public reporting burden for the collection of information is estimated to average 1 hour per response, including the time for reviewing instructions,

More information

NAVGEM Platform Support

NAVGEM Platform Support DISTRIBUTION STATEMENT A. Approved for public release; distribution is unlimited. NAVGEM Platform Support Mr. Timothy Whitcomb Naval Research Laboratory 7 Grace Hopper Ave, MS2 Monterey, CA 93943 phone:

More information

Determining the Stratification of Exchange Flows in Sea Straits

Determining the Stratification of Exchange Flows in Sea Straits Determining the Stratification of Exchange Flows in Sea Straits Lawrence J. Pratt Physical Oceanography Department, MS #21 Woods Hole Oceanographic Institution, Woods Hole, MA 02543 phone: (508) 289-2540

More information

Exact Solution of a Constrained. Optimization Problem in Thermoelectric Cooling

Exact Solution of a Constrained. Optimization Problem in Thermoelectric Cooling Applied Mathematical Sciences, Vol., 8, no. 4, 77-86 Exact Solution of a Constrained Optimization Problem in Thermoelectric Cooling Hongyun Wang Department of Applied Mathematics and Statistics University

More information

HIGH-POWER SOLID-STATE LASER: LETHALITY TESTING AND MODELING

HIGH-POWER SOLID-STATE LASER: LETHALITY TESTING AND MODELING HIGH-POWER SOLID-STATE LASER: LETHALITY TESTING AND MODELING R. P. Abbott, C. D. Boley, S. N. Fochs, L. A. Nattrass, J. M. Parker, A. M. Rubenchik, J. A. Smith, and R. M. Yamamoto* University of California

More information

Z-scan Measurement of Upconversion in Er:YAG

Z-scan Measurement of Upconversion in Er:YAG Proceedings of the 13 th Annual Directed Energy Symposium (Bethesda, MD) Dec. 2010 Z-scan Measurement of Upconversion in Er:YAG Jeffrey O. White, Thomas A. Mercier, Jr., John E. McElhenny Army Research

More information

Parameterizing the Effects of Upper-Ocean Large Eddies on Air-Sea Interaction

Parameterizing the Effects of Upper-Ocean Large Eddies on Air-Sea Interaction Parameterizing the Effects of Upper-Ocean Large Eddies on Air-Sea Interaction Ming Li Horn Point Laboratory University of Maryland Center for Environmental Science 2020 Horn Point Road, Cambridge, MD 21613

More information

Development and Application of Acoustic Metamaterials with Locally Resonant Microstructures

Development and Application of Acoustic Metamaterials with Locally Resonant Microstructures Development and Application of Acoustic Metamaterials with Locally Resonant Microstructures AFOSR grant #FA9550-10-1-0061 Program manager: Dr. Les Lee PI: C.T. Sun Purdue University West Lafayette, Indiana

More information

Computer Simulation of Sand Ripple Growth and Migration.

Computer Simulation of Sand Ripple Growth and Migration. Computer Simulation of Sand Ripple Growth and Migration. Douglas J. Wilson OGI School of Environmental Science and Engineering at the Oregon Health and Sciences University 20000 N.W. Walker Road, Beaverton,

More information

Thermo-Kinetic Model of Burning for Polymeric Materials

Thermo-Kinetic Model of Burning for Polymeric Materials Thermo-Kinetic Model of Burning for Polymeric Materials Stanislav I. Stoliarov a, Sean Crowley b, Richard Lyon b a University of Maryland, Fire Protection Engineering, College Park, MD 20742 b FAA W. J.

More information

Quantum Information Processing and Diagrams of States

Quantum Information Processing and Diagrams of States Quantum Information and Diagrams of States September 17th 2009, AFSecurity Sara Felloni sara@unik.no / sara.felloni@iet.ntnu.no Quantum Hacking Group: http://www.iet.ntnu.no/groups/optics/qcr/ UNIK University

More information

Dynamics of Droplet-Droplet and Droplet-Film Collision. C. K. Law Princeton University

Dynamics of Droplet-Droplet and Droplet-Film Collision. C. K. Law Princeton University Dynamics of Droplet-Droplet and Droplet-Film Collision C. K. Law Princeton University The physical phenomena of droplet-droplet and droplet-film collision in the head-on orientation were studied experimentally

More information

STUDY OF DETECTION LIMITS AND QUANTITATION ACCURACY USING 300 MHZ NMR

STUDY OF DETECTION LIMITS AND QUANTITATION ACCURACY USING 300 MHZ NMR STUDY OF DETECTION LIMITS AND QUANTITATION ACCURACY USING 300 MHZ NMR William R. Creasy EAI Corporation, 1308 Continental Drive, Suite J, Abingdon MD 21009 David J. McGarvey, Jeffrey S. Rice, Richard O'Connor,

More information

DIRECTIONAL WAVE SPECTRA USING NORMAL SPREADING FUNCTION

DIRECTIONAL WAVE SPECTRA USING NORMAL SPREADING FUNCTION CETN-I-6 3185 DIRECTIONAL WAVE SPECTRA USING NORMAL SPREADING FUNCTION PURPOSE : To present a parameterized model of a directional spectrum of the sea surface using an energy spectrum and a value for the

More information

uniform distribution theory

uniform distribution theory Uniform Distribution Theory 9 (2014), no.1, 21 25 uniform distribution theory ON THE FIRST DIGITS OF THE FIBONACCI NUMBERS AND THEIR EULER FUNCTION Florian Luca Pantelimon Stănică ABSTRACT. Here, we show

More information

On Applying Point-Interval Logic to Criminal Forensics

On Applying Point-Interval Logic to Criminal Forensics On Applying Point-Interval Logic to Criminal Forensics (Student Paper) Mashhood Ishaque Abbas K. Zaidi Alexander H. Levis Command and Control Research and Technology Symposium 1 Report Documentation Page

More information

SW06 Shallow Water Acoustics Experiment Data Analysis

SW06 Shallow Water Acoustics Experiment Data Analysis DISTRIBUTION STATEMENT A: Approved for public release; distribution is unlimited. SW06 Shallow Water Acoustics Experiment Data Analysis James F. Lynch MS #12, Woods Hole Oceanographic Institution Woods

More information

Playing Abstract games with Hidden States (Spatial and Non-Spatial).

Playing Abstract games with Hidden States (Spatial and Non-Spatial). Playing Abstract games with Hidden States (Spatial and Non-Spatial). Gregory Calbert, Hing-Wah Kwok Peter Smet, Jason Scholz, Michael Webb VE Group, C2D, DSTO. Report Documentation Page Form Approved OMB

More information

Estimation of Vertical Distributions of Water Vapor and Aerosols from Spaceborne Observations of Scattered Sunlight

Estimation of Vertical Distributions of Water Vapor and Aerosols from Spaceborne Observations of Scattered Sunlight Estimation of Vertical Distributions of Water Vapor and Aerosols from Spaceborne Observations of Scattered Sunlight Dale P. Winebrenner Polar Science Center/Applied Physics Laboratory University of Washington

More information

The Impact of Information Displays on Decision Making

The Impact of Information Displays on Decision Making ARL-TN-0846 SEP 2017 US Army Research Laboratory The Impact of Information Displays on Decision Making by John Shevlin, Marc Jackson, Sue E Kase, and Daniel Cassenti NOTICES Disclaimers The findings in

More information

A Radical Method for Calculating Muzzle Motion From Proximity Sensor Data

A Radical Method for Calculating Muzzle Motion From Proximity Sensor Data A Radical Method for Calculating Muzzle Motion From Proximity Sensor Data by Ilmars Celmins ARL-TR-6575 September 2013 Approved for public release; distribution is unlimited. NOTICES Disclaimers The findings

More information

Investigation of the Air-Wave-Sea Interaction Modes Using an Airborne Doppler Wind Lidar: Analyses of the HRDL data taken during DYNAMO

Investigation of the Air-Wave-Sea Interaction Modes Using an Airborne Doppler Wind Lidar: Analyses of the HRDL data taken during DYNAMO DISTRIBUTION STATEMENT: Approved for public release, distribution is unlimited. Investigation of the Air-Wave-Sea Interaction Modes Using an Airborne Doppler Wind Lidar: Analyses of the HRDL data taken

More information

INFRARED SPECTROSCOPY OF HYDROGEN CYANIDE IN SOLID PARAHYDROGEN (BRIEFING CHARTS)

INFRARED SPECTROSCOPY OF HYDROGEN CYANIDE IN SOLID PARAHYDROGEN (BRIEFING CHARTS) AFRL-MN-EG-TP-2006-7403 INFRARED SPECTROSCOPY OF HYDROGEN CYANIDE IN SOLID PARAHYDROGEN (BRIEFING CHARTS) C. Michael Lindsay, National Research Council, Post Doctoral Research Associate Mario E. Fajardo

More information

USMC Enlisted Endstrength Model

USMC Enlisted Endstrength Model USMC Enlisted Endstrength Model MORS Workshop Personnel and National Security: A Quantitative Approach Working Group #2: Models for Managing Retention Molly F. McIntosh January 27, 2009 Report Documentation

More information

by Larry D. Merkle ARL-TR-6631 September 2013 Approved for public release; distribution unlimited.

by Larry D. Merkle ARL-TR-6631 September 2013 Approved for public release; distribution unlimited. Quantum Efficiency Determination by Fluorescence in an Integrating Sphere: Consistency of a Simple, Transparent Solution with a More Complex, Widely Used Solution by Larry D. Merkle ARL-TR-6631 September

More information

Scattering of Internal Gravity Waves at Finite Topography

Scattering of Internal Gravity Waves at Finite Topography Scattering of Internal Gravity Waves at Finite Topography Peter Muller University of Hawaii Department of Oceanography 1000 Pope Road, MSB 429 Honolulu, HI 96822 phone: (808)956-8081 fax: (808)956-9164

More information

Multiparty Quantum Remote Control

Multiparty Quantum Remote Control Multiparty Quantum Remote Control Yu-Ting Chen and Tzonelih Hwang Abstract This paper proposes a multiparty quantum remote control (MQRC) protocol, which allows several controllers to perform remote operations

More information

Coastal Engineering Technical Note

Coastal Engineering Technical Note Coastal Engineering Technical Note CETN I-48 (12/91) Evaluation and Application of the Wave Information Study for the Gulf of Mexico INTRODUCTION The Wave Information Study (WIS) for the Gulf of Mexico

More information

Quantum Teleportation Pt. 3

Quantum Teleportation Pt. 3 Quantum Teleportation Pt. 3 PHYS 500 - Southern Illinois University March 7, 2017 PHYS 500 - Southern Illinois University Quantum Teleportation Pt. 3 March 7, 2017 1 / 9 A Bit of History on Teleportation

More information

MTIE AND TDEV ANALYSIS OF UNEVENLY SPACED TIME SERIES DATA AND ITS APPLICATION TO TELECOMMUNICATIONS SYNCHRONIZATION MEASUREMENTS

MTIE AND TDEV ANALYSIS OF UNEVENLY SPACED TIME SERIES DATA AND ITS APPLICATION TO TELECOMMUNICATIONS SYNCHRONIZATION MEASUREMENTS MTIE AND TDEV ANALYSIS OF UNEVENLY SPACED TIME SERIES DATA AND ITS APPLICATION TO TELECOMMUNICATIONS SYNCHRONIZATION MEASUREMENTS Mingfu Li, Hsin-Min Peng, and Chia-Shu Liao Telecommunication Labs., Chunghwa

More information

Predictive Model for Archaeological Resources. Marine Corps Base Quantico, Virginia John Haynes Jesse Bellavance

Predictive Model for Archaeological Resources. Marine Corps Base Quantico, Virginia John Haynes Jesse Bellavance Predictive Model for Archaeological Resources Marine Corps Base Quantico, Virginia John Haynes Jesse Bellavance Report Documentation Page Form Approved OMB No. 0704-0188 Public reporting burden for the

More information

Real-Time Environmental Information Network and Analysis System (REINAS)

Real-Time Environmental Information Network and Analysis System (REINAS) Calhoun: The NPS Institutional Archive Faculty and Researcher Publications Faculty and Researcher Publications 1998-09 Real-Time Environmental Information Network and Analysis System (REINAS) Nuss, Wendell

More information

A GENERAL PROCEDURE TO SET UP THE DYADIC GREEN S FUNCTION OF MULTILAYER CONFORMAL STRUCTURES AND ITS APPLICATION TO MICROSTRIP ANTENNAS

A GENERAL PROCEDURE TO SET UP THE DYADIC GREEN S FUNCTION OF MULTILAYER CONFORMAL STRUCTURES AND ITS APPLICATION TO MICROSTRIP ANTENNAS A GENERAL PROCEDURE TO SET UP THE DYADIC GREEN S FUNCTION OF MULTILAYER CONFORMAL STRUCTURES AND ITS APPLICATION TO MICROSTRIP ANTENNAS Michael Thiel*, Truong Vu Bang Giang and Achim Dreher Institute of

More information

Quantum information and quantum computing

Quantum information and quantum computing Middle East Technical University, Department of Physics January 7, 009 Outline Measurement 1 Measurement 3 Single qubit gates Multiple qubit gates 4 Distinguishability 5 What s measurement? Quantum measurement

More information

Volume 6 Water Surface Profiles

Volume 6 Water Surface Profiles A United States Contribution to the International Hydrological Decade HEC-IHD-0600 Hydrologic Engineering Methods For Water Resources Development Volume 6 Water Surface Profiles July 1975 Approved for

More information

The Sediment Budget Calculator: A Webtool to Develop a Family of Viable Inlet and Adjacent Beach Sediment Budget Solutions

The Sediment Budget Calculator: A Webtool to Develop a Family of Viable Inlet and Adjacent Beach Sediment Budget Solutions The Sediment Budget Calculator: A Webtool to Develop a Family of Viable Inlet and Adjacent Beach Sediment Budget Solutions by Julie Dean Rosati, Charles A. Sumner, and Derek A. Wilson PURPOSE: This Coastal

More information

REPORT DOCUMENTATION PAGE. Theoretical Study on Nano-Catalyst Burn Rate. Yoshiyuki Kawazoe (Tohoku Univ) N/A AOARD UNIT APO AP

REPORT DOCUMENTATION PAGE. Theoretical Study on Nano-Catalyst Burn Rate. Yoshiyuki Kawazoe (Tohoku Univ) N/A AOARD UNIT APO AP REPORT DOCUMENTATION PAGE Form Approved OMB No. 0704-0188 The public reporting burden for this collection of information is estimated to average 1 hour per response, including the time for reviewing instructions,

More information

Predicting Tropical Cyclone Formation and Structure Change

Predicting Tropical Cyclone Formation and Structure Change Predicting Tropical Cyclone Formation and Structure Change Patrick A. Harr Department of Meteorology Naval Postgraduate School Monterey, CA 93943-5114 Telephone: (831)656-3787 FAX:(831)656-3061 email:

More information

Grant Number: N IP To compare obtained theoretical results with NPAL experimental data.

Grant Number: N IP To compare obtained theoretical results with NPAL experimental data. Coherence of Low-Frequency Sound Signals Propagating through a Fluctuating Ocean: Analysis and Theoretical Interpretation of 2004 NPAL Experimental Data Alexander G. Voronovich NOAA/ESRL, PSD4, 325 Broadway,

More information

Advanced Numerical Methods for NWP Models

Advanced Numerical Methods for NWP Models Advanced Numerical Methods for NWP Models Melinda S. Peng Naval Research Laboratory Monterey, CA 93943-552 Phone: (831) 656-474 fax: (831) 656-4769 e-mail: melinda.peng@nrlmry.navy.mil Award #: N148WX2194

More information