Arxiv:1605.06002V1 [Quant-Ph] 17 May 2016
Total Page:16
File Type:pdf, Size:1020Kb
Load more
Recommended publications
-
171 Composition Operator on the Space of Functions
Acta Math. Univ. Comenianae 171 Vol. LXXXI, 2 (2012), pp. 171{183 COMPOSITION OPERATOR ON THE SPACE OF FUNCTIONS TRIEBEL-LIZORKIN AND BOUNDED VARIATION TYPE M. MOUSSAI Abstract. For a Borel-measurable function f : R ! R satisfying f(0) = 0 and Z sup t−1 sup jf 0(x + h) − f 0(x)jp dx < +1; (0 < p < +1); t>0 R jh|≤t s n we study the composition operator Tf (g) := f◦g on Triebel-Lizorkin spaces Fp;q(R ) in the case 0 < s < 1 + (1=p). 1. Introduction and the main result The study of the composition operator Tf : g ! f ◦ g associated to a Borel- s n measurable function f : R ! R on Triebel-Lizorkin spaces Fp;q(R ), consists in finding a characterization of the functions f such that s n s n (1.1) Tf (Fp;q(R )) ⊆ Fp;q(R ): The investigation to establish (1.1) was improved by several works, for example the papers of Adams and Frazier [1,2 ], Brezis and Mironescu [6], Maz'ya and Shaposnikova [9], Runst and Sickel [12] and [10]. There were obtained some necessary conditions on f; from which we recall the following results. For s > 0, 1 < p < +1 and 1 ≤ q ≤ +1 n s n s n • if Tf takes L1(R ) \ Fp;q(R ) to Fp;q(R ), then f is locally Lipschitz con- tinuous. n s n • if Tf takes the Schwartz space S(R ) to Fp;q(R ), then f belongs locally to s Fp;q(R). The first assertion is proved in [3, Theorem 3.1]. -
Comparative Programming Languages
CSc 372 Comparative Programming Languages 10 : Haskell — Curried Functions Department of Computer Science University of Arizona [email protected] Copyright c 2013 Christian Collberg 1/22 Infix Functions Declaring Infix Functions Sometimes it is more natural to use an infix notation for a function application, rather than the normal prefix one: 5+6 (infix) (+) 5 6 (prefix) Haskell predeclares some infix operators in the standard prelude, such as those for arithmetic. For each operator we need to specify its precedence and associativity. The higher precedence of an operator, the stronger it binds (attracts) its arguments: hence: 3 + 5*4 ≡ 3 + (5*4) 3 + 5*4 6≡ (3 + 5) * 4 3/22 Declaring Infix Functions. The associativity of an operator describes how it binds when combined with operators of equal precedence. So, is 5-3+9 ≡ (5-3)+9 = 11 OR 5-3+9 ≡ 5-(3+9) = -7 The answer is that + and - associate to the left, i.e. parentheses are inserted from the left. Some operators are right associative: 5^3^2 ≡ 5^(3^2) Some operators have free (or no) associativity. Combining operators with free associativity is an error: 5==4<3 ⇒ ERROR 4/22 Declaring Infix Functions. The syntax for declaring operators: infixr prec oper -- right assoc. infixl prec oper -- left assoc. infix prec oper -- free assoc. From the standard prelude: infixl 7 * infix 7 /, ‘div‘, ‘rem‘, ‘mod‘ infix 4 ==, /=, <, <=, >=, > An infix function can be used in a prefix function application, by including it in parenthesis. Example: ? (+) 5 ((*) 6 4) 29 5/22 Multi-Argument Functions Multi-Argument Functions Haskell only supports one-argument functions. -
Density Functional Theory
Density Functional Theory Fundamentals Video V.i Density Functional Theory: New Developments Donald G. Truhlar Department of Chemistry, University of Minnesota Support: AFOSR, NSF, EMSL Why is electronic structure theory important? Most of the information we want to know about chemistry is in the electron density and electronic energy. dipole moment, Born-Oppenheimer charge distribution, approximation 1927 ... potential energy surface molecular geometry barrier heights bond energies spectra How do we calculate the electronic structure? Example: electronic structure of benzene (42 electrons) Erwin Schrödinger 1925 — wave function theory All the information is contained in the wave function, an antisymmetric function of 126 coordinates and 42 electronic spin components. Theoretical Musings! ● Ψ is complicated. ● Difficult to interpret. ● Can we simplify things? 1/2 ● Ψ has strange units: (prob. density) , ● Can we not use a physical observable? ● What particular physical observable is useful? ● Physical observable that allows us to construct the Hamiltonian a priori. How do we calculate the electronic structure? Example: electronic structure of benzene (42 electrons) Erwin Schrödinger 1925 — wave function theory All the information is contained in the wave function, an antisymmetric function of 126 coordinates and 42 electronic spin components. Pierre Hohenberg and Walter Kohn 1964 — density functional theory All the information is contained in the density, a simple function of 3 coordinates. Electronic structure (continued) Erwin Schrödinger -
Chapter 18 the Single Slater Determinant Wavefunction (Properly Spin and Symmetry Adapted) Is the Starting Point of the Most Common Mean Field Potential
Chapter 18 The single Slater determinant wavefunction (properly spin and symmetry adapted) is the starting point of the most common mean field potential. It is also the origin of the molecular orbital concept. I. Optimization of the Energy for a Multiconfiguration Wavefunction A. The Energy Expression The most straightforward way to introduce the concept of optimal molecular orbitals is to consider a trial wavefunction of the form which was introduced earlier in Chapter 9.II. The expectation value of the Hamiltonian for a wavefunction of the multiconfigurational form Y = S I CIF I , where F I is a space- and spin-adapted CSF which consists of determinental wavefunctions |f I1f I2f I3...fIN| , can be written as: E =S I,J = 1, M CICJ < F I | H | F J > . The spin- and space-symmetry of the F I determine the symmetry of the state Y whose energy is to be optimized. In this form, it is clear that E is a quadratic function of the CI amplitudes CJ ; it is a quartic functional of the spin-orbitals because the Slater-Condon rules express each < F I | H | F J > CI matrix element in terms of one- and two-electron integrals < f i | f | f j > and < f if j | g | f kf l > over these spin-orbitals. B. Application of the Variational Method The variational method can be used to optimize the above expectation value expression for the electronic energy (i.e., to make the functional stationary) as a function of the CI coefficients CJ and the LCAO-MO coefficients {Cn,i} that characterize the spin- orbitals. -
Arxiv:1902.07690V2 [Cond-Mat.Str-El] 12 Apr 2019
Symmetry Projected Jastrow Mean-field Wavefunction in Variational Monte Carlo Ankit Mahajan1, ∗ and Sandeep Sharma1, y 1Department of Chemistry and Biochemistry, University of Colorado Boulder, Boulder, CO 80302, USA We extend our low-scaling variational Monte Carlo (VMC) algorithm to optimize the symmetry projected Jastrow mean field (SJMF) wavefunctions. These wavefunctions consist of a symmetry- projected product of a Jastrow and a general broken-symmetry mean field reference. Examples include Jastrow antisymmetrized geminal power (JAGP), Jastrow-Pfaffians, and resonating valence bond (RVB) states among others, all of which can be treated with our algorithm. We will demon- strate using benchmark systems including the nitrogen molecule, a chain of hydrogen atoms, and 2-D Hubbard model that a significant amount of correlation can be obtained by optimizing the energy of the SJMF wavefunction. This can be achieved at a relatively small cost when multiple symmetries including spin, particle number, and complex conjugation are simultaneously broken and projected. We also show that reduced density matrices can be calculated using the optimized wavefunctions, which allows us to calculate other observables such as correlation functions and will enable us to embed the VMC algorithm in a complete active space self-consistent field (CASSCF) calculation. 1. INTRODUCTION Recently, we have demonstrated that this cost discrep- ancy can be removed by introducing three algorithmic 16 Variational Monte Carlo (VMC) is one of the most ver- improvements . The most significant of these allowed us satile methods available for obtaining the wavefunction to efficiently screen the two-electron integrals which are and energy of a system.1{7 Compared to deterministic obtained by projecting the ab-initio Hamiltonian onto variational methods, VMC allows much greater flexibil- a finite orbital basis. -
Making a Faster Curry with Extensional Types
Making a Faster Curry with Extensional Types Paul Downen Simon Peyton Jones Zachary Sullivan Microsoft Research Zena M. Ariola Cambridge, UK University of Oregon [email protected] Eugene, Oregon, USA [email protected] [email protected] [email protected] Abstract 1 Introduction Curried functions apparently take one argument at a time, Consider these two function definitions: which is slow. So optimizing compilers for higher-order lan- guages invariably have some mechanism for working around f1 = λx: let z = h x x in λy:e y z currying by passing several arguments at once, as many as f = λx:λy: let z = h x x in e y z the function can handle, which is known as its arity. But 2 such mechanisms are often ad-hoc, and do not work at all in higher-order functions. We show how extensional, call- It is highly desirable for an optimizing compiler to η ex- by-name functions have the correct behavior for directly pand f1 into f2. The function f1 takes only a single argu- expressing the arity of curried functions. And these exten- ment before returning a heap-allocated function closure; sional functions can stand side-by-side with functions native then that closure must subsequently be called by passing the to practical programming languages, which do not use call- second argument. In contrast, f2 can take both arguments by-name evaluation. Integrating call-by-name with other at once, without constructing an intermediate closure, and evaluation strategies in the same intermediate language ex- this can make a huge difference to run-time performance in presses the arity of a function in its type and gives a princi- practice [Marlow and Peyton Jones 2004]. -
Iia. Systems of Many Electrons
EE5 in 2008 Lecture notes Univ. of Iceland Hannes J´onsson IIa. Systems of many electrons Exchange of particle labels Consider a system of n identical particles. By identical particles we mean that all intrinsic properties of the particles are the same, such as mass, spin, charge, etc. Figure II.1 A pairwise permutation of the labels on identical particles. In classical mechanics we can in principle follow the trajectory of each individual particle. They are, therefore, distinguishable even though they are identical. In quantum mechanics the particles are not distinguishable if they are close enough or if they interact strongly enough. The quantum mechanical wave function must reflect this fact. When the particles are indistinguishable, the act of labeling the particles is an arbi- trary operation without physical significance. Therefore, all observables must be unaffected by interchange of particle labels. The operators are said to be symmetric under interchange of labels. The Hamiltonian, for example, is symmetric, since the intrinsic properties of all the particles are the same. Let ψ(1, 2,...,n) be a solution to the Schr¨odinger equation, (Here n represents all the coordinates, both spatial and spin, of the particle labeled with n). Let Pij be an operator that permutes (or ‘exchanges’) the labels i and j: Pijψ(1, 2,...,i,...,j,...,n) = ψ(1, 2,...,j,...,i,...,n). This means that the function Pij ψ depends on the coordinates of particle j in the same way that ψ depends on the coordinates of particle i. Since H is symmetric under interchange of labels: H(Pijψ) = Pij Hψ, i.e., [Pij,H]=0. -
Sufficient Generalities About Topological Vector Spaces
(November 28, 2016) Topological vector spaces Paul Garrett [email protected] http:=/www.math.umn.edu/egarrett/ [This document is http://www.math.umn.edu/~garrett/m/fun/notes 2016-17/tvss.pdf] 1. Banach spaces Ck[a; b] 2. Non-Banach limit C1[a; b] of Banach spaces Ck[a; b] 3. Sufficient notion of topological vector space 4. Unique vectorspace topology on Cn 5. Non-Fr´echet colimit C1 of Cn, quasi-completeness 6. Seminorms and locally convex topologies 7. Quasi-completeness theorem 1. Banach spaces Ck[a; b] We give the vector space Ck[a; b] of k-times continuously differentiable functions on an interval [a; b] a metric which makes it complete. Mere pointwise limits of continuous functions easily fail to be continuous. First recall the standard [1.1] Claim: The set Co(K) of complex-valued continuous functions on a compact set K is complete with o the metric jf − gjCo , with the C -norm jfjCo = supx2K jf(x)j. Proof: This is a typical three-epsilon argument. To show that a Cauchy sequence ffig of continuous functions has a pointwise limit which is a continuous function, first argue that fi has a pointwise limit at every x 2 K. Given " > 0, choose N large enough such that jfi − fjj < " for all i; j ≥ N. Then jfi(x) − fj(x)j < " for any x in K. Thus, the sequence of values fi(x) is a Cauchy sequence of complex numbers, so has a limit 0 0 f(x). Further, given " > 0 choose j ≥ N sufficiently large such that jfj(x) − f(x)j < " . -
Slater Decomposition of Laughlin States
Slater Decomposition of Laughlin States∗ Gerald V. Dunne Department of Physics University of Connecticut 2152 Hillside Road Storrs, CT 06269 USA [email protected] 14 May, 1993 Abstract The second-quantized form of the Laughlin states for the fractional quantum Hall effect is discussed by decomposing the Laughlin wavefunctions into the N-particle Slater basis. A general formula is given for the expansion coefficients in terms of the characters of the symmetric group, and the expansion coefficients are shown to possess numerous interesting symmetries. For expectation values of the density operator it is possible to identify individual dominant Slater states of the correct uniform bulk density and filling fraction in the physically relevant N limit. →∞ arXiv:cond-mat/9306022v1 8 Jun 1993 1 Introduction The variational trial wavefunctions introduced by Laughlin [1] form the basis for the theo- retical understanding of the quantum Hall effect [2, 3]. The Laughlin wavefunctions describe especially stable strongly correlated states, known as incompressible quantum fluids, of a two dimensional electron gas in a strong magnetic field. They also form the foundation of the hierarchy structure of the fractional quantum Hall effect [4, 5, 6]. In the extreme low temperature and strong magnetic field limit, the single particle elec- tron states are restricted to the lowest Landau level. In the absence of interactions, this Landau level has a high degeneracy determined by the magnetic flux through the sample [7]. ∗UCONN-93-4 1 Much (but not all) of the physics of the quantum Hall effect may be understood in terms of the restriction of the dynamics to fixed Landau levels [8, 3, 9]. -
Introduction Vectors in Function Spaces
Jim Lambers MAT 415/515 Fall Semester 2013-14 Lectures 1 and 2 Notes These notes correspond to Section 5.1 in the text. Introduction This course is about series solutions of ordinary differential equations (ODEs). Unlike ODEs covered in MAT 285, whose solutions can be expressed as linear combinations of n functions, where n is the order of the ODE, the ODEs discussed in this course have solutions that are expressed as infinite series of functions, similar to power series seen in MAT 169. This approach of representing solutions using infinite series provides the following benefits: • It allows solutions to be represented using simpler functions, particularly polynomials, than the exponential or trigonometric functions normally used to represent solutions in \closed form". This leads to more efficient evaluation of solutions on a computer or calculator. • It enables solution of ODEs with variable coefficients, as opposed to ODEs seen in MAT 285 that either had constant coefficients or were of a special form. • It facilitates approximation of solutions by polynomials, by truncating the infinite series after a certain number of terms, which in turn aids in understanding the qualitative behavior of solutions. The solution of ODEs via infinite series will lead to the definition of several families of special functions, such as Bessel functions or various kinds of orthogonal polynomials such as Legendre polynomials. Each family of special functions that we will see in this course has an orthogonality relation, which simplifies computations of coefficients in infinite series involving such functions. As n such, orthogonality is going to be an essential concept in this course. -
Composition Operators on Function Spaces with Fractional Order of Smoothness
Composition Operators on Function Spaces with Fractional Order of Smoothness Gérard Bourdaud & Winfried Sickel October 15, 2010 Abstract In this paper we will give an overview concerning properties of composition oper‐ ators T_{f}(g) :=f og in the framework of Besov‐Lizorkin‐Triebel spaces. Boundedness and continuity will be discussed in a certain detail. In addition we also give a list of open problems. 2000 Mathematics Subject Classification: 46\mathrm{E}35, 47\mathrm{H}30. Keywords: composition of functions, composition operator, Sobolev spaces, Besov spaces, Lizorkin‐Triebel spaces, Slobodeckij spaces, Bessel potential spaces, functions of bounded variation, Wiener classes, optimal inequalities. 1 Introduction Let E denote a normed of functions. : are space Composition operators T_{f} g\mapsto f\circ g, g\in E , simple examples of nonlinear mappings. It is a little bit surprising that the knowledge about these operators is rather limited. One reason is, of course, that the properties of T_{f} strongly depend on f and E . Here in this paper we are concerned with E being either a Besov or a Lizorkin‐Triebel space (for definitions of these classes we refer to the appendix at the end of this These scales of Sobolev Bessel article). spaces generalize spaces W_{p}^{m}(\mathbb{R}^{n}) , potential as well as Hölder in view of the spaces H_{p}^{s}(\mathbb{R}^{n}) , Slobodeckij spaces W_{p}^{s}(\mathbb{R}^{n}) spaces C^{s}(\mathbb{R}^{n}) identities m\in \mathbb{N} \bullet W_{p}^{m}(\mathbb{R}^{n})=F_{p,2}^{m}(\mathbb{R}^{n}) , 1<p<\infty, ; s\in \mathbb{R} \bullet H_{p}^{s}(\mathbb{R}^{n})=F_{p,2}^{s}(\mathbb{R}^{n}) , 1<p<\infty, ; 1 \bullet W_{p}^{s}(\mathbb{R}^{n})=F_{p,p}^{s}(\mathbb{R}^{n})=B_{p,p}^{s}(\mathbb{R}^{n}) , 1\leq p<\infty, s>0, s\not\in \mathbb{N} ; \bullet C^{s}(\mathbb{R}^{n})=B_{\infty,\infty}^{s}(\mathbb{R}^{n}) , s>0, s\not\in \mathbb{N}. -
Lectures on Super Analysis
Lectures on Super Analysis —– Why necessary and What’s that? Towards a new approach to a system of PDEs arXiv:1504.03049v4 [math-ph] 15 Dec 2015 e-Version1.5 December 16, 2015 By Atsushi INOUE NOTICE: COMMENCEMENT OF A CLASS i Notice: Commencement of a class Syllabus Analysis on superspace —– a construction of non-commutative analysis 3 October 2008 – 30 January 2009, 10.40-12.10, H114B at TITECH, Tokyo, A. Inoue Roughly speaking, RA(=real analysis) means to study properties of (smooth) functions defined on real space, and CA(=complex analysis) stands for studying properties of (holomorphic) functions defined on spaces with complex structure. On the other hand, we may extend the differentiable calculus to functions having definition domain in Banach space, for example, S. Lang “Differentiable Manifolds” or J.A. Dieudonn´e“Trea- tise on Analysis”. But it is impossible in general to extend differentiable calculus to those defined on infinite dimensional Fr´echet space, because the implicit function theorem doesn’t hold on such generally given Fr´echet space. Then, if the ground ring (like R or C) is replaced by non-commutative one, what type of analysis we may develop under the condition that newly developed analysis should be applied to systems of PDE or RMT(=Random Matrix Theory). In this lectures, we prepare as a “ground ring”, Fr´echet-Grassmann algebra having count- ably many Grassmann generators and we define so-called superspace over such algebra. On such superspace, we take a space of super-smooth functions as the main objects to study. This procedure is necessary not only to associate a Hamilton flow for a given 2d 2d system × of PDE which supports to resolve Feynman’s murmur, but also to make rigorous Efetov’s result in RMT.