WorldWideScience

Sample records for string matching application

  1. Pattern recognition and string matching

    CERN Document Server

    Cheng, Xiuzhen

    2002-01-01

    The research and development of pattern recognition have proven to be of importance in science, technology, and human activity. Many useful concepts and tools from different disciplines have been employed in pattern recognition. Among them is string matching, which receives much theoretical and practical attention. String matching is also an important topic in combinatorial optimization. This book is devoted to recent advances in pattern recognition and string matching. It consists of twenty eight chapters written by different authors, addressing a broad range of topics such as those from classifica­ tion, matching, mining, feature selection, and applications. Each chapter is self-contained, and presents either novel methodological approaches or applications of existing theories and techniques. The aim, intent, and motivation for publishing this book is to pro­ vide a reference tool for the increasing number of readers who depend upon pattern recognition or string matching in some way. This includes student...

  2. Keylogger Application to Monitoring Users Activity with Exact String Matching Algorithm

    Science.gov (United States)

    Rahim, Robbi; Nurdiyanto, Heri; Saleh A, Ansari; Abdullah, Dahlan; Hartama, Dedy; Napitupulu, Darmawan

    2018-01-01

    The development of technology is very fast, especially in the field of Internet technology that at any time experiencing significant changes, The development also supported by the ability of human resources, Keylogger is a tool that most developed because this application is very rarely recognized a malicious program by antivirus, keylogger will record all activities related to keystrokes, the recording process is accomplished by using string matching method. The application of string matching method in the process of recording the keyboard is to help the admin in knowing what the user accessed on the computer.

  3. Techniques Used in String Matching for Network Security

    OpenAIRE

    Jamuna Bhandari

    2014-01-01

    String matching also known as pattern matching is one of primary concept for network security. In this area the effectiveness and efficiency of string matching algorithms is important for applications in network security such as network intrusion detection, virus detection, signature matching and web content filtering system. This paper presents brief review on some of string matching techniques used for network security.

  4. Experiences with string matching on the Fermi Architecture

    Energy Technology Data Exchange (ETDEWEB)

    Tumeo, Antonino; Secchi, Simone; Villa, Oreste

    2011-02-25

    String matching is at the core of many real-world applications, such as security, bioinformatic, data mining. All these applications requires the ability to match always growing data sets against large dictionaries effectively, fastly and possibly in real time. Unfortunately, string matching is a computationally intensive procedure which poses significant challenges on current software and hardware implementations. Graphic Processing Units (GPU) have become an interesting target for such high-throughput applications, but the algorithms and the data structures need to be redesigned to be parallelized and adapted to the underlining hardware, coping with the limitations imposed by these architectures. In this paper we present an efficient implementation of the Aho-Corasick string matching algorithm on GPU, showing how we progressively redesigned the algorithm and the data structures to fit on the architecture. We then evaluate the implementation on single and multiple Tesla C2050 (T20 ``Fermi'' based) boards, comparing them to the previous Tesla C1060 (T10 based) solutions and equivalent multicore implementations on x86 CPUs. We discuss the various tradeoffs of the different architectures.

  5. Optimal Packed String Matching

    DEFF Research Database (Denmark)

    Ben-Kiki, Oren; Bille, Philip; Breslauer, Dany

    2011-01-01

    In the packed string matching problem, each machine word accommodates – characters, thus an n-character text occupies n/– memory words. We extend the Crochemore-Perrin constantspace O(n)-time string matching algorithm to run in optimal O(n/–) time and even in real-time, achieving a factor – speed...

  6. Efficient Aho-Corasick String Matching on Emerging Multicore Architectures

    Energy Technology Data Exchange (ETDEWEB)

    Tumeo, Antonino; Villa, Oreste; Secchi, Simone; Chavarría-Miranda, Daniel

    2013-12-12

    String matching algorithms are critical to several scientific fields. Beside text processing and databases, emerging applications such as DNA protein sequence analysis, data mining, information security software, antivirus, ma- chine learning, all exploit string matching algorithms [3]. All these applica- tions usually process large quantity of textual data, require high performance and/or predictable execution times. Among all the string matching algorithms, one of the most studied, especially for text processing and security applica- tions, is the Aho-Corasick algorithm. 1 2 Book title goes here Aho-Corasick is an exact, multi-pattern string matching algorithm which performs the search in a time linearly proportional to the length of the input text independently from pattern set size. However, depending on the imple- mentation, when the number of patterns increase, the memory occupation may raise drastically. In turn, this can lead to significant variability in the performance, due to the memory access times and the caching effects. This is a significant concern for many mission critical applications and modern high performance architectures. For example, security applications such as Network Intrusion Detection Systems (NIDS), must be able to scan network traffic against very large dictionaries in real time. Modern Ethernet links reach up to 10 Gbps, and malicious threats are already well over 1 million, and expo- nentially growing [28]. When performing the search, a NIDS should not slow down the network, or let network packets pass unchecked. Nevertheless, on the current state-of-the-art cache based processors, there may be a large per- formance variability when dealing with big dictionaries and inputs that have different frequencies of matching patterns. In particular, when few patterns are matched and they are all in the cache, the procedure is fast. Instead, when they are not in the cache, often because many patterns are matched and the caches are

  7. Towards optimal packed string matching

    DEFF Research Database (Denmark)

    Ben-Kiki, Oren; Bille, Philip; Breslauer, Dany

    2014-01-01

    -size string-matching instruction wssm is available in contemporary commodity processors. The other word-size maximum-suffix instruction wslm is only required during the pattern pre-processing. Benchmarks show that our solution can be efficiently implemented, unlike some prior theoretical packed string...

  8. A parallel approximate string matching under Levenshtein distance on graphics processing units using warp-shuffle operations.

    Directory of Open Access Journals (Sweden)

    ThienLuan Ho

    Full Text Available Approximate string matching with k-differences has a number of practical applications, ranging from pattern recognition to computational biology. This paper proposes an efficient memory-access algorithm for parallel approximate string matching with k-differences on Graphics Processing Units (GPUs. In the proposed algorithm, all threads in the same GPUs warp share data using warp-shuffle operation instead of accessing the shared memory. Moreover, we implement the proposed algorithm by exploiting the memory structure of GPUs to optimize its performance. Experiment results for real DNA packages revealed that the performance of the proposed algorithm and its implementation archived up to 122.64 and 1.53 times compared to that of sequential algorithm on CPU and previous parallel approximate string matching algorithm on GPUs, respectively.

  9. Improved algorithms for approximate string matching (extended abstract

    Directory of Open Access Journals (Sweden)

    Papamichail Georgios

    2009-01-01

    Full Text Available Abstract Background The problem of approximate string matching is important in many different areas such as computational biology, text processing and pattern recognition. A great effort has been made to design efficient algorithms addressing several variants of the problem, including comparison of two strings, approximate pattern identification in a string or calculation of the longest common subsequence that two strings share. Results We designed an output sensitive algorithm solving the edit distance problem between two strings of lengths n and m respectively in time O((s - |n - m|·min(m, n, s + m + n and linear space, where s is the edit distance between the two strings. This worst-case time bound sets the quadratic factor of the algorithm independent of the longest string length and improves existing theoretical bounds for this problem. The implementation of our algorithm also excels in practice, especially in cases where the two strings compared differ significantly in length. Conclusion We have provided the design, analysis and implementation of a new algorithm for calculating the edit distance of two strings with both theoretical and practical implications. Source code of our algorithm is available online.

  10. Cache Locality-Centric Parallel String Matching on Many-Core Accelerator Chips

    OpenAIRE

    Tran, Nhat-Phuong; Lee, Myungho; Choi, Dong Hoon

    2015-01-01

    Aho-Corasick (AC) algorithm is a multiple patterns string matching algorithm commonly used in computer and network security and bioinformatics, among many others. In order to meet the highly demanding computational requirements imposed on these applications, achieving high performance for the AC algorithm is crucial. In this paper, we present a high performance parallelization of the AC on the many-core accelerator chips such as the Graphic Processing Unit (GPU) from Nvidia and...

  11. GPU Based N-Gram String Matching Algorithm with Score Table Approach for String Searching in Many Documents

    Science.gov (United States)

    Srinivasa, K. G.; Shree Devi, B. N.

    2017-10-01

    String searching in documents has become a tedious task with the evolution of Big Data. Generation of large data sets demand for a high performance search algorithm in areas such as text mining, information retrieval and many others. The popularity of GPU's for general purpose computing has been increasing for various applications. Therefore it is of great interest to exploit the thread feature of a GPU to provide a high performance search algorithm. This paper proposes an optimized new approach to N-gram model for string search in a number of lengthy documents and its GPU implementation. The algorithm exploits GPGPUs for searching strings in many documents employing character level N-gram matching with parallel Score Table approach and search using CUDA API. The new approach of Score table used for frequency storage of N-grams in a document, makes the search independent of the document's length and allows faster access to the frequency values, thus decreasing the search complexity. The extensive thread feature in a GPU has been exploited to enable parallel pre-processing of trigrams in a document for Score Table creation and parallel search in huge number of documents, thus speeding up the whole search process even for a large pattern size. Experiments were carried out for many documents of varied length and search strings from the standard Lorem Ipsum text on NVIDIA's GeForce GT 540M GPU with 96 cores. Results prove that the parallel approach for Score Table creation and searching gives a good speed up than the same approach executed serially.

  12. String matching with variable length gaps

    DEFF Research Database (Denmark)

    Bille, Philip; Gørtz, Inge Li; Vildhøj, Hjalte Wedel

    2012-01-01

    primitive in computational biology applications. Let m and n be the lengths of P and T, respectively, and let k be the number of strings in P. We present a new algorithm achieving time O(nlogk+m+α) and space O(m+A), where A is the sum of the lower bounds of the lengths of the gaps in P and α is the total...... number of occurrences of the strings in P within T. Compared to the previous results this bound essentially achieves the best known time and space complexities simultaneously. Consequently, our algorithm obtains the best known bounds for almost all combinations of m, n, k, A, and α. Our algorithm...

  13. Accelerating String Set Matching in FPGA Hardware for Bioinformatics Research

    Directory of Open Access Journals (Sweden)

    Burgess Shane C

    2008-04-01

    Full Text Available Abstract Background This paper describes techniques for accelerating the performance of the string set matching problem with particular emphasis on applications in computational proteomics. The process of matching peptide sequences against a genome translated in six reading frames is part of a proteogenomic mapping pipeline that is used as a case-study. The Aho-Corasick algorithm is adapted for execution in field programmable gate array (FPGA devices in a manner that optimizes space and performance. In this approach, the traditional Aho-Corasick finite state machine (FSM is split into smaller FSMs, operating in parallel, each of which matches up to 20 peptides in the input translated genome. Each of the smaller FSMs is further divided into five simpler FSMs such that each simple FSM operates on a single bit position in the input (five bits are sufficient for representing all amino acids and special symbols in protein sequences. Results This bit-split organization of the Aho-Corasick implementation enables efficient utilization of the limited random access memory (RAM resources available in typical FPGAs. The use of on-chip RAM as opposed to FPGA logic resources for FSM implementation also enables rapid reconfiguration of the FPGA without the place and routing delays associated with complex digital designs. Conclusion Experimental results show storage efficiencies of over 80% for several data sets. Furthermore, the FPGA implementation executing at 100 MHz is nearly 20 times faster than an implementation of the traditional Aho-Corasick algorithm executing on a 2.67 GHz workstation.

  14. Fast Searching in Packed Strings

    DEFF Research Database (Denmark)

    Bille, Philip

    2009-01-01

    Given strings P and Q the (exact) string matching problem is to find all positions of substrings in Q matching P. The classical Knuth-Morris-Pratt algorithm [SIAM J. Comput., 1977] solves the string matching problem in linear time which is optimal if we can only read one character at the time....... However, most strings are stored in a computer in a packed representation with several characters in a single word, giving us the opportunity to read multiple characters simultaneously. In this paper we study the worst-case complexity of string matching on strings given in packed representation. Let m...... word-RAM with logarithmic word size we present an algorithm using time O(n/log(sigma) n + m + occ) Here occ is the number of occurrences of P in Q. For m = o(n) this improves the O(n) bound...

  15. Fast searching in packed strings

    DEFF Research Database (Denmark)

    Bille, Philip

    2011-01-01

    Given strings P and Q the (exact) string matching problem is to find all positions of substrings in Q matching P. The classical Knuth–Morris–Pratt algorithm [SIAM J. Comput. 6 (2) (1977) 323–350] solves the string matching problem in linear time which is optimal if we can only read one character...... at the time. However, most strings are stored in a computer in a packed representation with several characters in a single word, giving us the opportunity to read multiple characters simultaneously. In this paper we study the worst-case complexity of string matching on strings given in packed representation....... Let m⩽n be the lengths P and Q, respectively, and let σ denote the size of the alphabet. On a standard unit-cost word-RAM with logarithmic word size we present an algorithm using timeO(nlogσn+m+occ). Here occ is the number of occurrences of P in Q. For m=o(n) this improves the O(n) bound of the Knuth...

  16. On the elliptic genus of three E-strings and heterotic strings

    International Nuclear Information System (INIS)

    Cai, Wenhe; Huang, Min-xin; Sun, Kaiwen

    2015-01-01

    A precise formula for the elliptic genus of three E-strings is presented. The related refined free energy coincides with the result calculated from topological string on local half K3 Calabi-Yau threefold up to genus twelve. The elliptic genus of three heterotic strings computed from M9 domain walls matches with the result from orbifold formula to high orders. This confirms the n=3 case of the recent conjecture that n pairs of E-strings can recombine into n heterotic strings.

  17. Career Path Suggestion using String Matching and Decision Trees

    Science.gov (United States)

    Nagpal, Akshay; P. Panda, Supriya

    2015-05-01

    High school and college graduates seemingly are often battling for the courses they should major in order to achieve their target career. In this paper, we worked on suggesting a career path to a graduate to reach his/her dream career given the current educational status. Firstly, we collected the career data of professionals and academicians from various career fields and compiled the data set by using the necessary information from the data. Further, this was used as the basis to suggest the most appropriate career path for the person given his/her current educational status. Decision trees and string matching algorithms were employed to suggest the appropriate career path for a person. Finally, an analysis of the result has been done directing to further improvements in the model.

  18. Efficient Disk-Based Techniques for Manipulating Very Large String Databases

    KAUST Repository

    Allam, Amin

    2017-05-18

    Indexing and processing strings are very important topics in database management. Strings can be database records, DNA sequences, protein sequences, or plain text. Various string operations are required for several application categories, such as bioinformatics and entity resolution. When the string count or sizes become very large, several state-of-the-art techniques for indexing and processing such strings may fail or behave very inefficiently. Modifying an existing technique to overcome these issues is not usually straightforward or even possible. A category of string operations can be facilitated by the suffix tree data structure, which basically indexes a long string to enable efficient finding of any substring of the indexed string, and can be used in other operations as well, such as approximate string matching. In this document, we introduce a novel efficient method to construct the suffix tree index for very long strings using parallel architectures, which is a major challenge in this category. Another category of string operations require clustering similar strings in order to perform application-specific processing on the resulting possibly-overlapping clusters. In this document, based on clustering similar strings, we introduce a novel efficient technique for record linkage and entity resolution, and a novel method for correcting errors in a large number of small strings (read sequences) generated by the DNA sequencing machines.

  19. Fast Partial Evaluation of Pattern Matching in Strings

    DEFF Research Database (Denmark)

    Ager, Mads Sig; Danvy, Olivier; Rohde, Henning Korsholm

    2003-01-01

    We show how to obtain all of Knuth, Morris, and Pratt's linear-time string matcher by partial evaluation of a quadratic-time string matcher with respect to a pattern string. Although it has been known for 15 years how to obtain this linear matcher by partial evaluation of a quadratic one, how...... to obtain it in linear time has remained an open problem.Obtaining a linear matcher by partial evaluation of a quadratic one is achieved by performing its backtracking at specialization time and memoizing its results. We show (1) how to rewrite the source matcher such that its static intermediate...... computations can be shared at specialization time and (2) how to extend the memoization capabilities of a partial evaluator to static functions. Such an extended partial evaluator, if its memoization is implemented efficiently, specializes the rewritten source matcher in linear time....

  20. Fast Partial Evaluation of Pattern Matching in Strings

    DEFF Research Database (Denmark)

    Ager, Mads Sig; Danvy, Olivier; Rohde, Henning Korsholm

    2006-01-01

    We show how to obtain all of Knuth, Morris, and Pratt's linear-time string matcher by specializing a quadratic-time string matcher with respect to a pattern string. Although it has been known for 15 years how to obtain this linear matcher by partial evaluation of a quadratic one, how to obtain...... it in linear time has remained an open problem. Obtaining a linear matcher by partial evaluation of a quadratic one is achieved by performing its backtracking at specialization time and memoizing its results. We show (1) how to rewrite the source matcher such that its static intermediate computations can...... be shared at specialization time and (2) how to extend the memoization capabilities of a partial evaluator to static functions. Such an extended partial evaluator, if its memoization is implemented efficiently, specializes the rewritten source matcher in linear time. Finally, we show that the method also...

  1. Fast Partial Evaluation of Pattern Matching in Strings

    DEFF Research Database (Denmark)

    Ager, Mads Sig; Danvy, Olivier; Rohde, Henning Korsholm

    2003-01-01

    We show how to obtain all of Knuth, Morris, and Pratt's linear-time string matcher by specializing a quadratic-time string matcher with respect to a pattern string. Although it has been known for 15 years how to obtain this linear matcher by partial evaluation of a quadratic one, how to obtain...... it in linear time has remained an open problem. Obtaining a linear matcher by partial evaluation of a quadratic one is achieved by performing its backtracking at specialization time and memoizing its results. We show (1) how to rewrite the source matcher such that its static intermediate computations can...... be shared at specialization time and (2) how to extend the memoization capabilities of a partial evaluator to static functions. Such an extended partial evaluator, if its memoization is implemented efficiently, specializes the rewritten source matcher in linear time. Finally, we show that the method also...

  2. String theory and applications to phenomenology and cosmology

    International Nuclear Information System (INIS)

    Florakis, I.G.

    2011-07-01

    This thesis treats applications of String Theory to problems of cosmology and high energy phenomenology. In particular, we investigate problems related to the description of the initial state of the universe, using the methods of perturbative String Theory. After a review of the string-theoretic tools that will be employed, we discuss a novel degeneracy symmetry between the bosonic and fermionic massive towers of states (MSDS symmetry), living at particular points of moduli space. We study the marginal deformations of MSDS vacua and exhibit their natural thermal interpretation, in connection with the resolution of the Hagedorn divergences of string thermodynamics. The cosmological evolution of a special, 2-dimensional thermal 'Hybrid' model is presented and the correct implementation of the full stringy degrees of freedom leads to the absence of gravitational singularities, within a fully perturbative treatment. (author)

  3. A memory-efficient data structure representing exact-match overlap graphs with application for next-generation DNA assembly.

    Science.gov (United States)

    Dinh, Hieu; Rajasekaran, Sanguthevar

    2011-07-15

    Exact-match overlap graphs have been broadly used in the context of DNA assembly and the shortest super string problem where the number of strings n ranges from thousands to billions. The length ℓ of the strings is from 25 to 1000, depending on the DNA sequencing technologies. However, many DNA assemblers using overlap graphs suffer from the need for too much time and space in constructing the graphs. It is nearly impossible for these DNA assemblers to handle the huge amount of data produced by the next-generation sequencing technologies where the number n of strings could be several billions. If the overlap graph is explicitly stored, it would require Ω(n(2)) memory, which could be prohibitive in practice when n is greater than a hundred million. In this article, we propose a novel data structure using which the overlap graph can be compactly stored. This data structure requires only linear time to construct and and linear memory to store. For a given set of input strings (also called reads), we can informally define an exact-match overlap graph as follows. Each read is represented as a node in the graph and there is an edge between two nodes if the corresponding reads overlap sufficiently. A formal description follows. The maximal exact-match overlap of two strings x and y, denoted by ov(max)(x, y), is the longest string which is a suffix of x and a prefix of y. The exact-match overlap graph of n given strings of length ℓ is an edge-weighted graph in which each vertex is associated with a string and there is an edge (x, y) of weight ω=ℓ-|ov(max)(x, y)| if and only if ω ≤ λ, where |ov(max)(x, y)| is the length of ov(max)(x, y) and λ is a given threshold. In this article, we show that the exact-match overlap graphs can be represented by a compact data structure that can be stored using at most (2λ-1)(2⌈logn⌉+⌈logλ⌉)n bits with a guarantee that the basic operation of accessing an edge takes O(log λ) time. We also propose two algorithms for

  4. Are Stopped Strings Preferred in Sad Music?

    Directory of Open Access Journals (Sweden)

    David Huron

    2017-01-01

    Full Text Available String instruments may be played either with open strings (where the string vibrates between the bridge and a hard wooden nut or with stopped strings (where the string vibrates between the bridge and a performer's finger pressed against the fingerboard. Compared with open strings, stopped strings permit the use of vibrato and exhibit a darker timbre. Inspired by research on the timbre of sad speech, we test whether there is a tendency to use stopped strings in nominally sad music. Specifically, we compare the proportion of potentially open-to-stopped strings in a sample of slow, minor-mode movements with matched major-mode movements. By way of illustration, a preliminary analysis of Samuel Barber's famous Adagio from his Opus 11 string quartet shows that the selected key (B-flat minor provides the optimum key for minimizing open string tones. However, examination of a broader controlled sample of quartet movements by Haydn, Mozart and Beethoven failed to exhibit the conjectured relationship. Instead, major-mode movements were found to avoid possible open strings more than slow minor-mode movements.

  5. Fast and compact regular expression matching

    DEFF Research Database (Denmark)

    Bille, Philip; Farach-Colton, Martin

    2008-01-01

    We study 4 problems in string matching, namely, regular expression matching, approximate regular expression matching, string edit distance, and subsequence indexing, on a standard word RAM model of computation that allows logarithmic-sized words to be manipulated in constant time. We show how...... to improve the space and/or remove a dependency on the alphabet size for each problem using either an improved tabulation technique of an existing algorithm or by combining known algorithms in a new way....

  6. A multi-pattern hash-binary hybrid algorithm for URL matching in the HTTP protocol.

    Directory of Open Access Journals (Sweden)

    Ping Zeng

    Full Text Available In this paper, based on our previous multi-pattern uniform resource locator (URL binary-matching algorithm called HEM, we propose an improved multi-pattern matching algorithm called MH that is based on hash tables and binary tables. The MH algorithm can be applied to the fields of network security, data analysis, load balancing, cloud robotic communications, and so on-all of which require string matching from a fixed starting position. Our approach effectively solves the performance problems of the classical multi-pattern matching algorithms. This paper explores ways to improve string matching performance under the HTTP protocol by using a hash method combined with a binary method that transforms the symbol-space matching problem into a digital-space numerical-size comparison and hashing problem. The MH approach has a fast matching speed, requires little memory, performs better than both the classical algorithms and HEM for matching fields in an HTTP stream, and it has great promise for use in real-world applications.

  7. Matching and Compression of Strings with Automata and Word Packing

    DEFF Research Database (Denmark)

    Skjoldjensen, Frederik Rye; Gørtz, Inge Li; Thomassen, Carsten

    pattern queries. In the deterministic variant the goal is to solve the string indexing problem without any randomization (at preprocessing time or query time). In the packed variant the strings are stored with several character in a single word, giving us the opportunity to read multiple characters...... in (deterministic) time O (m= + logm + log log ) ; where = w= log is the number of characters packed in a word of size w = (log n). Our query time is always at least as good as the previous best known bounds and whenever several characters are packed in a word, i.e., log w, the query times are faster. Dynamic...

  8. Non-static vacuum strings: exterior and interior solutions

    International Nuclear Information System (INIS)

    Stein-Schabes, J.A.

    1986-01-01

    New non-static cylindrically symmetric solutions of Einsteins's equations are presented. Some of these solutions represent string-like objects. An exterior vacuum solution is matched to a non-vacuum interior solution for different forms of the energy-momentum tensor. They generalize the standard static string. 12 refs

  9. Querying and Mining Strings Made Easy

    KAUST Repository

    Sahli, Majed

    2017-10-13

    With the advent of large string datasets in several scientific and business applications, there is a growing need to perform ad-hoc analysis on strings. Currently, strings are stored, managed, and queried using procedural codes. This limits users to certain operations supported by existing procedural applications and requires manual query planning with limited tuning opportunities. This paper presents StarQL, a generic and declarative query language for strings. StarQL is based on a native string data model that allows StarQL to support a large variety of string operations and provide semantic-based query optimization. String analytic queries are too intricate to be solved on one machine. Therefore, we propose a scalable and efficient data structure that allows StarQL implementations to handle large sets of strings and utilize large computing infrastructures. Our evaluation shows that StarQL is able to express workloads of application-specific tools, such as BLAST and KAT in bioinformatics, and to mine Wikipedia text for interesting patterns using declarative queries. Furthermore, the StarQL query optimizer shows an order of magnitude reduction in query execution time.

  10. NanoString, a novel digital color-coded barcode technology: current and future applications in molecular diagnostics.

    Science.gov (United States)

    Tsang, Hin-Fung; Xue, Vivian Weiwen; Koh, Su-Pin; Chiu, Ya-Ming; Ng, Lawrence Po-Wah; Wong, Sze-Chuen Cesar

    2017-01-01

    Formalin-fixed, paraffin-embedded (FFPE) tissue sample is a gold mine of resources for molecular diagnosis and retrospective clinical studies. Although molecular technologies have expanded the range of mutations identified in FFPE samples, the applications of existing technologies are limited by the low nucleic acids yield and poor extraction quality. As a result, the routine clinical applications of molecular diagnosis using FFPE samples has been associated with many practical challenges. NanoString technologies utilize a novel digital color-coded barcode technology based on direct multiplexed measurement of gene expression and offer high levels of precision and sensitivity. Each color-coded barcode is attached to a single target-specific probe corresponding to a single gene which can be individually counted without amplification. Therefore, NanoString is especially useful for measuring gene expression in degraded clinical specimens. Areas covered: This article describes the applications of NanoString technologies in molecular diagnostics and challenges associated with its applications and the future development. Expert commentary: Although NanoString technology is still in the early stages of clinical use, it is expected that NanoString-based cancer expression panels would play more important roles in the future in classifying cancer patients and in predicting the response to therapy for better personal therapeutic care.

  11. Tracing the string: BMN correspondence at finite J2/N

    International Nuclear Information System (INIS)

    Pearson, John; Vaman, Diana; Verlinde, Herman; Volovich, Anastasia; Spradlin, Marcus

    2003-01-01

    Employing the string bit formalism of hep-th/0209215, we identify the basis transformation that relates BMN operators in N=4 gauge theory to string states in the dual string field theory at finite g 2 =J 2 /N. In this basis, the supercharge truncates at linear order in g 2 , and the mixing amplitude between 1 and 2-string states precisely matches with the (corrected) answer of hep-th/0206073 for the 3-string amplitude in light-cone string field theory. Supersymmetry then predicts the order g 2 2 contact term in the string bit Hamiltonian. The resulting leading order mass renormalization of string states agrees with the recently computed shift in conformal dimension of BMN operators in the gauge theory. (author)

  12. Most Recent Match Queries in On-Line Suffix Trees

    DEFF Research Database (Denmark)

    Larsson, N. Jesper

    2014-01-01

    A suffix tree is able to efficiently locate a pattern in an indexed string, but not in general the most recent copy of the pattern in an online stream, which is desirable in some applications. We study the most general version of the problem of locating a most recent match: supporting queries...

  13. Cosmic strings and cosmic structure

    International Nuclear Information System (INIS)

    Albrecht, A.; Brandenberger, R.; Turok, N.

    1987-01-01

    The paper concerns the application of the theory of cosmic strings to explain the structure of the Universe. The formation of cosmic strings in the early Universe is outlined, along with the Big Bang theory, Grand Unified theories, and the first three minutes after the Big Bang. A description is given of the shaping of the Universe by cosmic strings, including the evolution of the string. The possibility for direct observation of cosmic strings is discussed. (U.K.)

  14. Conformal techniques in string theory and string field theory

    International Nuclear Information System (INIS)

    Giddings, S.B.

    1987-01-01

    The application of some conformal and Riemann surface techniques to string theory and string field theory is described. First a brief review of Riemann surface techniques and of the Polyakov approach to string theory is presented. This is followed by a discussion of some features of string field theory and of its Feynman rules. Specifically, it is shown that the Feynman diagrams for Witten's string field theory respect modular invariance, and in particular give a triangulation of moduli space. The Polyakov formalism is then used to derive the Feynman rules that should follow from this theory upon gauge-fixing. It should also be possible to apply this derivation to deduce the Feynman rules for other gauge-fixed string field theories. Following this, Riemann surface techniques are turned to the problem of proving the equivalence of the Polyakov and light-cone formalisms. It is first shown that the light-cone diagrams triangulate moduli space. Then the Polyakov measure is worked out for these diagrams, and shown to equal that deduced from the light-cone gauge fixed formalism. Also presented is a short description of the comparison of physical states in the two formalisms. The equivalence of the two formalisms in particular constitutes a proof of the unitarity of the Polyakov framework for the closed bosonic string

  15. String Theory for Pedestrians (1/3)

    CERN Multimedia

    CERN. Geneva

    2009-01-01

    This is a non-technical rapid course on string theory. Lecture 1 is an introduction to the basics of the subject: classical and quantum strings, D(irichlet) branes and string-string dualities. In lecture 2 I will discuss string unification of the fundamental forces, covering both its successes and failures. Finally in lecture 3 I will review string models of black hole microstates, the holographic gauge/gravity duality and, if time permits, potential applications to the physics of the strong interactions.

  16. String Theory for Pedestrians (2/3)

    CERN Multimedia

    CERN. Geneva

    2009-01-01

    This is a non-technical rapid course on string theory. Lecture 1 is an introduction to the basics of the subject: classical and quantum strings, D(irichlet) branes and string-string dualities. In lecture 2 I will discuss string unification of the fundamental forces, covering both its successes and failures. Finally in lecture 3 I will review string models of black hole microstates, the holographic gauge/gravity duality and, if time permits, potential applications to the physics of the strong interactions.

  17. String Theory for Pedestrians (3/3)

    CERN Multimedia

    CERN. Geneva

    2009-01-01

    This is a non-technical rapid course on string theory. Lecture 1 is an introduction to the basics of the subject: classical and quantum strings, D(irichlet) branes and string-string dualities. In lecture 2 I will discuss string unification of the fundamental forces, covering both its successes and failures. Finally in lecture 3 I will review string models of black hole microstates, the holographic gauge/gravity duality and, if time permits, potential applications to the physics of the strong interactions.

  18. Quark Synthesis String Theory From Dark Matter to Light Emitting Atoms

    Science.gov (United States)

    Webb, William

    2012-10-01

    Forefather physicists formulated fusion based on nucleosynthesis. They directed that whole nucleons synthesize. Quark Synthesis String Theory now shows that it's the string-like quarks that do the synthesizing: not whole nucleons. In a dark region, string-like quarks synthesize with other string-like quarks to make rope-like quarks. Quarks structure into threesomes bound only by electrostatic and gravitational forces. Quarks not structuring as threesomes remain dark. Balanced threesomes of string-like quarks become neutrons. Balanced threesomes of rope-like quarks become more massive neutroniumA nuclei. After their formation, neutrons and neutroniumAs quickly begin emitting electrons. This paper develops equations that correctly describe nuclear structures and their electron emissions. Electron emission beta decay is calculated for the 30 least massive neutroniumA nuclei and their subsequent transmutation thru 203 intermediate nuclei on their way to becoming well known nuclei centering the 30 least massive light emitting atoms. This is a perfect 233 for 233 match between calculations of Quark Synthesis String Theory and factual nuclear data. This perfect match provides affirmation that nuclei have no need for the unknown strong or week forces and mediating particles. Nuclear physics succeeds using a string theory that has the quarks doing the synthesizing.

  19. The space-time operator product expansion in string theory duals of field theories

    International Nuclear Information System (INIS)

    Aharony, Ofer; Komargodski, Zohar

    2008-01-01

    We study the operator product expansion (OPE) limit of correlation functions in field theories which possess string theory duals, from the point of view of the string worldsheet. We show how the interesting ('single-trace') terms in the OPE of the field theory arise in this limit from the OPE of the worldsheet theory of the string dual, using a dominant saddle point which appears in computations of worldsheet correlation functions in the space-time OPE limit. The worldsheet OPE generically contains only non-physical operators, but all the non-physical contributions are resummed by the saddle point to a contribution similar to that of a physical operator, which exactly matches the field theory expectations. We verify that the OPE limit of the worldsheet theory does not have any other contributions to the OPE limit of space-time correlation functions. Our discussion is completely general and applies to any local field theory (conformal at high energies) that has a weakly coupled string theory dual (with arbitrary curvature). As a first application, we compare our results to a proposal of R. Gopakumar for the string theory dual of free gauge theories

  20. Best matching theory & applications

    CERN Document Server

    Moghaddam, Mohsen

    2017-01-01

    Mismatch or best match? This book demonstrates that best matching of individual entities to each other is essential to ensure smooth conduct and successful competitiveness in any distributed system, natural and artificial. Interactions must be optimized through best matching in planning and scheduling, enterprise network design, transportation and construction planning, recruitment, problem solving, selective assembly, team formation, sensor network design, and more. Fundamentals of best matching in distributed and collaborative systems are explained by providing: § Methodical analysis of various multidimensional best matching processes § Comprehensive taxonomy, comparing different best matching problems and processes § Systematic identification of systems’ hierarchy, nature of interactions, and distribution of decision-making and control functions § Practical formulation of solutions based on a library of best matching algorithms and protocols, ready for direct applications and apps development. Design...

  1. String Theory and M-Theory

    Science.gov (United States)

    Becker, Katrin; Becker, Melanie; Schwarz, John H.

    String theory is one of the most exciting and challenging areas of modern theoretical physics. This book guides the reader from the basics of string theory to recent developments. It introduces the basics of perturbative string theory, world-sheet supersymmetry, space-time supersymmetry, conformal field theory and the heterotic string, before describing modern developments, including D-branes, string dualities and M-theory. It then covers string geometry and flux compactifications, applications to cosmology and particle physics, black holes in string theory and M-theory, and the microscopic origin of black-hole entropy. It concludes with Matrix theory, the AdS/CFT duality and its generalizations. This book is ideal for graduate students and researchers in modern string theory, and will make an excellent textbook for a one-year course on string theory. It contains over 120 exercises with solutions, and over 200 homework problems with solutions available on a password protected website for lecturers at www.cambridge.org/9780521860697. Comprehensive coverage of topics from basics of string theory to recent developments Ideal textbook for a one-year course in string theory Includes over 100 exercises with solutions Contains over 200 homework problems with solutions available to lecturers on-line

  2. Progress in string theory research

    CERN Document Server

    2016-01-01

    At the first look, the String Theory seems just an interesting and non-trivial application of the quantum mechanics and the special relativity to vibrating strings. By itself, the quantization of relativistic strings does not call the attention of the particle physicist as a significant paradigm shift. However, when the string quantization is performed by applying the standard rules of the perturbative Quantum Field Theory, one discovers that the strings in certain states have the same physical properties as the gravity in the flat space-time. Chapter one of this book reviews the construction of the thermal bosonic string and D-brane in the framework of the Thermo Field Dynamics (TFD). It briefly recalls the wellknown light-cone quantization of the bosonic string in the conformal gauge in flat space-time, and gives a bird’s eye view of the fundamental concepts of the TFD. Chapter two examines a visual model inspired by string theory, on the system of interacting anyons. Chapter three investigate the late-ti...

  3. Conformal field theory and its application to strings

    International Nuclear Information System (INIS)

    Verlinde, E.P.

    1988-01-01

    Conformal field theories on Riemann surfaces are considered and the result is applied to study the loop amplitudes for bosonic strings. It is shown that there is a close resemblance between the loop amplitudes for φ 3 -theory and the expressions for string multi-loop amplitudes. The similarity between φ 3 -amplitudes in curved backgrounds and the analytic structure of string amplitudes in backgrounds described by conformal field theories is also pointed out. 60 refs.; 5 figs.; 200 schemes

  4. Supergravity duals of matrix string theory

    International Nuclear Information System (INIS)

    Morales, Jose F.; Samtleben, Henning

    2002-01-01

    We study holographic duals of type II and heterotic matrix string theories described by warped AdS 3 supergravities. By explicitly solving the linearized equations of motion around near horizon D-string geometries, we determine the spectrum of Kaluza-Klein primaries for type I, II supergravities on warped AdS 3 xS 7 . The results match those coming from the dual two-dimensional gauge theories living on the D-string worldvolumes. We briefly discuss the connections with the N=(8,8), N=(8,0) orbifold superconformal field theories to which type IIB/heterotic matrix strings flow in the infrared. In particular, we associate the dimension (h,h-bar) (32,32) twisted operator which brings the matrix string theories out from the conformal point (R; 8 ) N /S N with the dilaton profile in the supergravity background. The familiar dictionary between masses and 'scaling' dimensions of field and operators are modified by the presence of non-trivial warp factors and running dilatons. These modifications are worked out for the general case of domain wall/QFT correspondences between supergravities on warped AdS d+1 xS q geometries and super Yang-Mills theories with 16 supercharges. (author)

  5. Twenty-five questions for string theorists

    Energy Technology Data Exchange (ETDEWEB)

    Binetruy, Pierre; /Orsay, LPT; Kane, G.L.; /Michigan U., MCTP; Lykken, Joseph D.; /Fermilab; Nelson, Brent D.; /Pennsylvania U.

    2005-09-01

    In an effort to promote communication between the formal and phenomenological branches of the high-energy theory community, we provide a description of some important issues in supersymmetric and string phenomenology. We describe each within the context of string constructions, illustrating them with specific examples where applicable. Each topic culminates in a set of questions that we believe are amenable to direct consideration by string theorists, and whose answers we think could help connect string theory and phenomenology.

  6. Functional integral approach to string theories

    International Nuclear Information System (INIS)

    Sakita, B.

    1987-01-01

    Fermionic string theory can be made supersymmetric: the superstring. It contains among others mass zero gauge fields of spin 1 and 2. The recent revival of interests in string field theories is due to the recognition of the compactified superstring theory as a viable theory of grandunification of all interactions, especially after Green and Schwarz's discovery of the gauge and gravitational anomaly cancellation in 0(32) superstring theory. New developments include string phenomenology, general discussions of compactification, new models, especially the heterotic string. These are either applications or extensions of string field theories. Although these are very exciting developments, the author limits his attention to the basics of the bosonic string theory

  7. Micro string resonators as temperature sensors

    DEFF Research Database (Denmark)

    Larsen, T.; Schmid, S.; Boisen, A.

    2013-01-01

    The resonance frequency of strings is highly sensitive to temperature. In this work we have investigated the applicability of micro string resonators as temperature sensors. The resonance frequency of strings is a function of the tensile stress which is coupled to temperature by the thermal...... to the low thermal mass of the strings. A temperature resolution of 2.5×10-4 °C has been achieved with silicon nitride strings. The theoretical limit for the temperature resolution of 8×10-8 °C has not been reached yet and requires further improvement of the sensor....

  8. String-math 2012

    CERN Document Server

    Katz, Sheldon; Klemm, Albrecht; Morrison, David R

    2015-01-01

    This volume contains the proceedings of the conference String-Math 2012, which was held July 16-21, 2012, at the Hausdorff Center for Mathematics, Universitat Bonn. This was the second in a series of annual large meetings devoted to the interface of mathematics and string theory. These meetings have rapidly become the flagship conferences in the field. Topics include super Riemann surfaces and their super moduli, generalized moonshine and K3 surfaces, the latest developments in supersymmetric and topological field theory, localization techniques, applications to knot theory, and many more. The contributors include many leaders in the field, such as Sergio Cecotti, Matthias Gaberdiel, Rahul Pandharipande, Albert Schwarz, Anne Taormina, Johannes Walcher, Katrin Wendland, and Edward Witten. This book will be essential reading for researchers and students in this area and for all mathematicians and string theorists who want to update themselves on developments in the math-string interface.

  9. Y-system and quasi-classical strings

    Energy Technology Data Exchange (ETDEWEB)

    Gromov, Nikolay [Deutsches Elektronen-Synchrotron (DESY), Hamburg (Germany); Hamburg Univ. (Germany). 2. Inst. fuer Theoretische Physik; St. Petersburg INP, Gatchina, St. Petersburg (Russian Federation)

    2009-11-15

    Recently Kazakov, Vieira and the author conjectured the Y-system set of equations describing the planar spectrum of AdS/CFT. In this paper we solve the Y-system equations in the strong coupling scaling limit. We show that the quasi-classical spectrum of string moving inside AdS{sub 3} x S{sup 1} matches precisely with the prediction of the Y-system. Thus the Y-system, unlike the asymptotic Bethe ansatz, describes correctly the spectrum of one-loop string energies including all exponential finite size corrections. This gives a very non-trivial further support in favor of the conjecture. (orig.)

  10. Interacting-string picture of the fermionic string

    International Nuclear Information System (INIS)

    Mandelstam, S.

    1986-01-01

    This report gives a review of the interacting-string picture of the Bose string. In the present lecture, the author outlines a similar treatment of the Fermionic string. The quantization of the free Fermionic string is carried out to the degrees of freedom x, representing the displacement of the string. Also presented are Grassman degrees of freedom S distributed along the string. The report pictures the fermionic string as a string of dipoles. The general picture of the interaction of such strings by joining and splitting is the same as for the Bose string. The author does not at present have the simplest formula for fermion string scattering amplitudes. A less detailed treatment is given than for the Bose string. The report sets up the functional-integration formalism, derives the analog mode, and indicates in general, terms how the conformal transformation to the z-plane may be performed. The paper concludes by stating without proof the formula for the N-article tree amplitude in the manifestly supersymmetric formalism

  11. Matching the Hagedorn temperature in AdS/CFT correspondence

    International Nuclear Information System (INIS)

    Harmark, Troels; Orselli, Marta

    2006-01-01

    We match the Hagedorn/deconfinement temperature of planar N=4 super Yang-Mills (SYM) on RxS 3 to the Hagedorn temperature of string theory on AdS 5 xS 5 . The match is done in a near-critical region where both gauge theory and string theory are weakly coupled. The near-critical region is near a point with zero temperature and critical chemical potential. On the gauge-theory side we are taking a decoupling limit found in Ref. 7 in which the physics of planar N=4 SYM is given exactly by the ferromagnetic XXX 1/2 Heisenberg spin chain. We find moreover a general relation between the Hagedorn/deconfinement temperature and the thermodynamics of the Heisenberg spin chain and we use this to compute it in two distinct regimes. On the string-theory side, we identify the dual limit for which the string tension and string coupling go to zero. This limit is taken of string theory on a maximally supersymmetric pp-wave background with a flat direction, obtained from a Penrose limit of AdS 5 xS 5 . We compute the Hagedorn temperature of the string theory and find agreement with the Hagedorn/deconfinement temperature computed on the gauge-theory side

  12. String theory and quantum gravity '92

    International Nuclear Information System (INIS)

    Harvey, J.; Iengo, R.; Narain, K.S.; Randjbar Daemi, S.; Verlinde, H.

    1993-01-01

    These proceedings of the 1992 Trieste Spring School and Workshop on String Theory and Quantum Gravity contains introductions and overviews of recent work on the use of two-dimensional string inspired models in the study of black holes, a lecture on gravitational scattering at planckian energies, another on the physical properties of higher-dimensional black holes and black strings in string theory, a discussion on N=2 superconformal field theories, a lecture about the application of matrix model techniques to the study of string theory in two dimensions, and an overview of the current status and developments in string field theory. Connections with models in statistical mechanics are also discussed. These proceedings contain seven lectures and ten contributions. Refs and figs

  13. Butterfly tachyons in vacuum string field theory

    International Nuclear Information System (INIS)

    Matlock, Peter

    2003-01-01

    We use geometrical conformal field theory methods to investigate tachyon fluctuations about the butterfly projector state in vacuum string field theory. We find that the on-shell condition for the tachyon field is equivalent to the requirement that the quadratic term in the string-field action vanish on shell. This further motivates the interpretation of the butterfly state as a D-brane. We begin a calculation of the tension of the butterfly, and conjecture that this will match the case of the sliver and further strengthen this interpretation

  14. Vacua and inflation in string theory and supergravity

    International Nuclear Information System (INIS)

    Rummel, Markus

    2013-07-01

    We study the connection between the early and late accelerated expansion of the universe and string theory. In Part I of this thesis, the observational degeneracy between single field models of inflation with canonical kinetic terms and noncanonical kinetic terms, in particular string theory inspired models, is discussed. The 2-point function observables of a given non-canonical theory and its canonical transform that is obtained by matching the inflationary trajectories in phase space are found to match in the case of Dirac-Born-Infeld (DBI) inflation. At the level of the 3-point function observables (non-Gaussianities), we find degeneracy between non-canonical inflation and canonical inflation with a potential that includes a sum of modulated terms. In Part II, we present explicit examples for de Sitter vacua in type IIB string theory. After deriving a sufficient condition for de Sitter vacua in the Kahler uplifting scenario, we show that a globally consistent de Sitter model can be realized on a certain Calabi-Yau manifold. All geometric moduli are stabilized and all known consistency constraints are fulfilled. The complex structure moduli stabilization by fluxes is studied explicitly for a small number of cycles. Extrapolating to a larger number of flux carrying cycles, we verify statistical studies in the literature which show that, in principle, the string landscape can account for a universe with an extremely small cosmological constant.

  15. Vacua and inflation in string theory and supergravity

    Energy Technology Data Exchange (ETDEWEB)

    Rummel, Markus

    2013-07-15

    We study the connection between the early and late accelerated expansion of the universe and string theory. In Part I of this thesis, the observational degeneracy between single field models of inflation with canonical kinetic terms and noncanonical kinetic terms, in particular string theory inspired models, is discussed. The 2-point function observables of a given non-canonical theory and its canonical transform that is obtained by matching the inflationary trajectories in phase space are found to match in the case of Dirac-Born-Infeld (DBI) inflation. At the level of the 3-point function observables (non-Gaussianities), we find degeneracy between non-canonical inflation and canonical inflation with a potential that includes a sum of modulated terms. In Part II, we present explicit examples for de Sitter vacua in type IIB string theory. After deriving a sufficient condition for de Sitter vacua in the Kahler uplifting scenario, we show that a globally consistent de Sitter model can be realized on a certain Calabi-Yau manifold. All geometric moduli are stabilized and all known consistency constraints are fulfilled. The complex structure moduli stabilization by fluxes is studied explicitly for a small number of cycles. Extrapolating to a larger number of flux carrying cycles, we verify statistical studies in the literature which show that, in principle, the string landscape can account for a universe with an extremely small cosmological constant.

  16. Quality factor improvement of silicon nitride micro string resonators

    DEFF Research Database (Denmark)

    Schmid, Silvan; Malm, Bjarke; Boisen, Anja

    2011-01-01

    Resonant micro and nano strings are of interest for sensor applications due to their extraordinary high quality factors, low mass and tunable resonant frequency. It has been found that the quality factor of strings is usually limited by clamping loss. In this work, clamping loss has been addressed...... by varying the clamping design and string geometry. We present silicon nitride micro strings with quality factors (Q) of up to 4 million in high vacuum achieved by minimizing clamping loss. For applications such as for chemical sensing, strings need to vibrate at atmospheric pressure. Maximal quality factor...

  17. Cosmological horizons, quintessence and string theory

    International Nuclear Information System (INIS)

    Kaloper, Nemanja

    2003-01-01

    String theory is presently the best candidate for a quantum theory of gravity unified with other forces. It is natural to hope that applications of string theory to cosmology may shed new light on the cosmological conundra, such as singularities, initial conditions, cosmological constant problem and the origin of inflation. Before we can apply string theory to cosmology, there are important conceptual and practical problems which must be addressed. We have reviewed here some of these problems, related to how one defines string theory in a cosmological setting. (author)

  18. Cylindrically symmetric, static strings with a cosmological constant in Brans-Dicke theory

    International Nuclear Information System (INIS)

    Delice, Oezguer

    2006-01-01

    The static cylindrically symmetric vacuum solutions with a cosmological constant in the framework of the Brans-Dicke theory are investigated. Some of these solutions admitting Lorentz boost invariance along the symmetry axis correspond to local, straight cosmic strings with a cosmological constant. Some physical properties of such solutions are studied. These strings apply attractive or repulsive forces on the test particles. A smooth matching is also performed with a recently introduced interior thick string solution with a cosmological constant

  19. Strings for quantumchromodynamics

    International Nuclear Information System (INIS)

    Schomerus, V.

    2007-04-01

    During the last decade, intriguing dualities between gauge and string theory have been found and explored. they provide a novel window on strongly couplde gauge physics, including QCD-like models. Based on a short historical review of modern string theory, we explain how so-called AdS/CFT dualities emerged at the end of the 1990s. Some of their concrete implications and remarkable recent progress are then illustrated for the simplest example, namely the multicolor limit of N=4 SYM theory in four dimensions. We end with a few comments on existing extensions to more realistic models and applications, in particular to the sQGP. This text is meant as a non-technical introduction to gauge/string dualities for (particle) physicists. (orig.)

  20. Strings for quantumchromodynamics

    Energy Technology Data Exchange (ETDEWEB)

    Schomerus, V.

    2007-04-15

    During the last decade, intriguing dualities between gauge and string theory have been found and explored. they provide a novel window on strongly couplde gauge physics, including QCD-like models. Based on a short historical review of modern string theory, we explain how so-called AdS/CFT dualities emerged at the end of the 1990s. Some of their concrete implications and remarkable recent progress are then illustrated for the simplest example, namely the multicolor limit of N=4 SYM theory in four dimensions. We end with a few comments on existing extensions to more realistic models and applications, in particular to the sQGP. This text is meant as a non-technical introduction to gauge/string dualities for (particle) physicists. (orig.)

  1. An equivalence between momentum and charge in string theory

    International Nuclear Information System (INIS)

    Horne, J.H.; Horowitz, G.T.; Steif, A.R.

    1992-01-01

    It is shown that for a translationally invariant solution to string theory, spacetime duality interchanges the momentum in the symmetry direction and the axion charge per unit length. As one application, we show explicitly that charged black strings are equivalent to boosted (uncharged) black strings. The extremal black strings (which correspond to the field outside of a fundamental macroscopic string) are equivalent to plane-fronted waves describing strings moving at the speed of light

  2. Tadpole resummations in string theory

    International Nuclear Information System (INIS)

    Kitazawa, Noriaki

    2008-01-01

    While R-R tadpoles should be canceled for consistency, string models with broken supersymmetry generally have uncanceled NS-NS tadpoles. Their presence signals that the background does not solve the field equations, so that these models are in 'wrong' vacua. In this Letter we investigate, with reference to some prototype examples, whether the true values of physical quantities can be recovered resumming the NS-NS tadpoles, hence by an approach that is related to the analysis based on String Field Theory by open-closed duality. We show that, indeed, the positive classical vacuum energy of a Dp-brane of the bosonic string is exactly canceled by the negative contribution arising from tree-level tadpole resummation, in complete agreement with Sen's conjecture on open-string tachyon condensation and with the consequent analysis based on String Field Theory. We also show that the vanishing classical vacuum energy of the SO(8192) unoriented bosonic open-string theory does not receive any tree-level corrections from the tadpole resummation. This result is consistent with the fact that this (unstable) configuration is free from tadpoles of massless closed-string modes, although there is a tadpole of the closed string tachyon. The application of this method to superstring models with broken supersymmetry is also discussed

  3. String fragmentation; La fragmentation des cordes

    Energy Technology Data Exchange (ETDEWEB)

    Drescher, H.J.; Werner, K. [Laboratoire de Physique Subatomique et des Technologies Associees - SUBATECH, Centre National de la Recherche Scientifique, 44 - Nantes (France)

    1997-10-01

    The classical string model is used in VENUS as a fragmentation model. For the soft domain simple 2-parton strings were sufficient, whereas for higher energies up to LHC, the perturbative regime of the QCD gives additional soft gluons, which are mapped on the string as so called kinks, energy singularities between the leading partons. The kinky string model is chosen to handle fragmentation of these strings by application of the Lorentz invariant area law. The `kinky strings` model, corresponding to the perturbative gluons coming from pQCD, takes into consideration this effect by treating the partons and gluons on the same footing. The decay law is always the Artru-Menessier area law which is the most realistic since it is invariant to the Lorentz and gauge transformations. For low mass strings a manipulation of the rupture point is necessary if the string corresponds already to an elementary particle determined by the mass and the flavor content. By means of the fragmentation model it will be possible to simulate the data from future experiments at LHC and RHIC 3 refs.

  4. Lattice gravity and strings

    International Nuclear Information System (INIS)

    Jevicki, A.; Ninomiya, M.

    1985-01-01

    We are concerned with applications of the simplicial discretization method (Regge calculus) to two-dimensional quantum gravity with emphasis on the physically relevant string model. Beginning with the discretization of gravity and matter we exhibit a discrete version of the conformal trace anomaly. Proceeding to the string problem we show how the direct approach of (finite difference) discretization based on Nambu action corresponds to unsatisfactory treatment of gravitational degrees. Based on the Regge approach we then propose a discretization corresponding to the Polyakov string. In this context we are led to a natural geometric version of the associated Liouville model and two-dimensional gravity. (orig.)

  5. Access, Rank, and Select in Grammar-compressed Strings

    DEFF Research Database (Denmark)

    Belazzougui, Djamal; Cording, Patrick Hagge; Puglisi, Simon J.

    2015-01-01

    Given a string S of length N on a fixed alphabet of σ symbols, a grammar compressor produces a context-free grammar G of size n that generates S and only S. In this paper we describe data structures to support the following operations on a grammar-compressed string: access(S,i,j) (return substring...... consecutive symbols from S. Alternatively, we can achieve \\O(logτN+m/logσN) query time using \\O(nτlogτ(N/n)logN) bits of space, matching a lower bound stated by Verbin and Yu for strings where N is polynomially related to n when τ = log ε N. For rank and select we describe data structures of size \\O...

  6. Deriving the four-string and open-closed string interactions from geometric string field theory

    International Nuclear Information System (INIS)

    Kaku, M.

    1990-01-01

    One of the questions concerning the covariant open string field theory is why there are two distinct BRST theories and why the four-string interaction appears in one version but not the other. The authors solve this mystery by showing that both theories are gauge-fixed versions of a higher gauge theory, called the geometric string field theory, with a new field, a string verbein e μσ νρ , which allows us to gauge the string length and σ parametrization. By fixing the gauge, the authors can derive the endpoint gauge (the covariantized light cone gauge), the midpoint gauge of Witten, or the interpolating gauge with arbitrary string length. The authors show explicitly that the four-string interaction is a gauge artifact of the geometric theory (the counterpart of the four-fermion instantaneous Coulomb term of QED). By choosing the interpolating gauge, they produce a new class of four-string interactions which smoothly interpolate between the endpoint gauge and the midpoint gauge (where it vanishes). Similarly, they can extract the closed string as a bound state of the open string, which appears in the endpoint gauge but vanishes in the midpoint gauge. Thus, the four-string and open-closed string interactions do not have to be added to the action as long as the string vierbein is included

  7. Two-loop string theory on null compactifications

    International Nuclear Information System (INIS)

    Cove, Henry C.D.; Szabo, Richard J.

    2006-01-01

    We compute the two-loop contributions to the free energy in the null compactification of perturbative string theory at finite temperature. The cases of bosonic, type II and heterotic strings are all treated. The calculation exploits an explicit reductive parametrization of the moduli space of infinite-momentum frame string worldsheets in terms of branched cover instantons. Various arithmetic and physical properties of the instanton sums are described. Applications to symmetric product orbifold conformal field theories and to the matrix string theory conjecture are also briefly discussed

  8. Applicant characteristics associated with successful matching into otolaryngology.

    Science.gov (United States)

    Hauser, Leah J; Gebhard, Grant M; Blumhagen, Rachel; Carlson, Nichole E; Cabrera-Muffly, Cristina

    2017-05-01

    To identify resident applicant characteristics that increase the odds of matching to otolaryngology residency. Cross-sectional analysis. Residency applications to our institution from 2009 through 2013 were reviewed. The available data represented 81.1% of applicants to otolaryngology programs nationwide. Online public records were searched to determine whether an applicant matched to an otolaryngology residency position. Factors that were significantly associated with the odds of matching were determined using logistic regression. A total of 1,479 unique applications were analyzed. On univariate analysis, 27 demographic, academic, personal, medical school, prior training, and application-specific factors were associated with the odds of matching into otolaryngology. On multivariate analysis, indicators of academic achievement, such as Alpha Omega Alpha Honor Medical Society (AOA) status, whether applicant received awards, and publications, were significantly associated with the odds of matching (odds ratio [OR] 2.03, 1.39, 1.66, respectively). The odds of matching increased with increasing step 1 scores (P otolaryngology residency. Although this information allows medical students to determine the strength of their application, these criteria have not been correlated with resident success. We urge selection committees to begin identifying applicant selection methods that reflect the values we want to cultivate in our future colleagues. N/A. Laryngoscope, 127:1052-1057, 2017. © 2016 The American Laryngological, Rhinological and Otological Society, Inc.

  9. Large scale CMB anomalies from thawing cosmic strings

    Energy Technology Data Exchange (ETDEWEB)

    Ringeval, Christophe [Centre for Cosmology, Particle Physics and Phenomenology, Institute of Mathematics and Physics, Louvain University, 2 Chemin du Cyclotron, 1348 Louvain-la-Neuve (Belgium); Yamauchi, Daisuke; Yokoyama, Jun' ichi [Research Center for the Early Universe (RESCEU), Graduate School of Science, The University of Tokyo, Tokyo 113-0033 (Japan); Bouchet, François R., E-mail: christophe.ringeval@uclouvain.be, E-mail: yamauchi@resceu.s.u-tokyo.ac.jp, E-mail: yokoyama@resceu.s.u-tokyo.ac.jp, E-mail: bouchet@iap.fr [Institut d' Astrophysique de Paris, UMR 7095-CNRS, Université Pierre et Marie Curie, 98bis boulevard Arago, 75014 Paris (France)

    2016-02-01

    Cosmic strings formed during inflation are expected to be either diluted over super-Hubble distances, i.e., invisible today, or to have crossed our past light cone very recently. We discuss the latter situation in which a few strings imprint their signature in the Cosmic Microwave Background (CMB) Anisotropies after recombination. Being almost frozen in the Hubble flow, these strings are quasi static and evade almost all of the previously derived constraints on their tension while being able to source large scale anisotropies in the CMB sky. Using a local variance estimator on thousand of numerically simulated Nambu-Goto all sky maps, we compute the expected signal and show that it can mimic a dipole modulation at large angular scales while being negligible at small angles. Interestingly, such a scenario generically produces one cold spot from the thawing of a cosmic string loop. Mixed with anisotropies of inflationary origin, we find that a few strings of tension GU = O(1) × 10{sup −6} match the amplitude of the dipole modulation reported in the Planck satellite measurements and could be at the origin of other large scale anomalies.

  10. Efficient Disk-Based Techniques for Manipulating Very Large String Databases

    KAUST Repository

    Allam, Amin

    2017-01-01

    Indexing and processing strings are very important topics in database management. Strings can be database records, DNA sequences, protein sequences, or plain text. Various string operations are required for several application categories

  11. Development and Application of the Downhole Drilling String Shock-Absorption and Hydraulic Supercharging Device

    Directory of Open Access Journals (Sweden)

    Yongwang Liu

    2016-01-01

    Full Text Available It is a hot topic for deep/ultradeep wells to improve rock-breaking efficiency and drilling speed by available downhole energy. Based on different downhole energies and working conditions, specialized plunger pump is proposed to convert longitudinal vibration of drilling string into rock-breaking energy. Technical design is developed to generate high-pressure water jet. And then a simulation model is built to verify feasibility of the technical design. Through simulation, the influence law of key factors is obtained. On this basis, this device is tested in several wells. The result indicates this device can increase drilling speed as much as 136%. Meanwhile the harmful vibration can be absorbed. The energy from drilling string vibration is of high frequency and increases as well depth and formation anisotropy increase. By reducing adverse vibration, this device is able to increase the drilling speed and the service life also meets the demand of field application. The longest working time lasts for more than 130 hours. The performance of this device demonstrates great application prospect in deep/ultradeep resources exploration. To provide more equipment support for deep/ultradeep wells, more effort should be put into fundamental study on downhole drill string vibration and related equipment.

  12. DroidEnsemble: Detecting Android Malicious Applications with Ensemble of String and Structural Static Features

    KAUST Repository

    Wang, Wei

    2018-05-11

    Android platform has dominated the Operating System of mobile devices. However, the dramatic increase of Android malicious applications (malapps) has caused serious software failures to Android system and posed a great threat to users. The effective detection of Android malapps has thus become an emerging yet crucial issue. Characterizing the behaviors of Android applications (apps) is essential to detecting malapps. Most existing work on detecting Android malapps was mainly based on string static features such as permissions and API usage extracted from apps. There also exists work on the detection of Android malapps with structural features, such as Control Flow Graph (CFG) and Data Flow Graph (DFG). As Android malapps have become increasingly polymorphic and sophisticated, using only one type of static features may result in false negatives. In this work, we propose DroidEnsemble that takes advantages of both string features and structural features to systematically and comprehensively characterize the static behaviors of Android apps and thus build a more accurate detection model for the detection of Android malapps. We extract each app’s string features, including permissions, hardware features, filter intents, restricted API calls, used permissions, code patterns, as well as structural features like function call graph. We then use three machine learning algorithms, namely, Support Vector Machine (SVM), k-Nearest Neighbor (kNN) and Random Forest (RF), to evaluate the performance of these two types of features and of their ensemble. In the experiments, We evaluate our methods and models with 1386 benign apps and 1296 malapps. Extensive experimental results demonstrate the effectiveness of DroidEnsemble. It achieves the detection accuracy as 95.8% with only string features and as 90.68% with only structural features. DroidEnsemble reaches the detection accuracy as 98.4% with the ensemble of both types of features, reducing 9 false positives and 12 false

  13. Algorithms and data structures for grammar-compressed strings

    DEFF Research Database (Denmark)

    Cording, Patrick Hagge

    Textual databases for e.g. biological or web-data are growing rapidly, and it is often only feasible to store the data in compressed form. However, compressing the data comes at a price. Traditional algorithms for e.g. pattern matching requires all data to be decompressed - a computationally...... demanding task. In this thesis we design data structures for accessing and searching compressed data efficiently. Our results can be divided into two categories. In the first category we study problems related to pattern matching. In particular, we present new algorithms for counting and comparing...... substrings, and a new algorithm for finding all occurrences of a pattern in which we may insert gaps. In the other category we deal with accessing and decompressing parts of the compressed string. We show how to quickly access a single character of the compressed string, and present a data structure...

  14. Quantum field theory of point particles and strings

    CERN Document Server

    Hatfield, Brian

    1992-01-01

    The purpose of this book is to introduce string theory without assuming any background in quantum field theory. Part I of this book follows the development of quantum field theory for point particles, while Part II introduces strings. All of the tools and concepts that are needed to quantize strings are developed first for point particles. Thus, Part I presents the main framework of quantum field theory and provides for a coherent development of the generalization and application of quantum field theory for point particles to strings.Part II emphasizes the quantization of the bosonic string.

  15. Hermiticity and CPT in string theory

    International Nuclear Information System (INIS)

    Sonoda, Hidenori

    1989-01-01

    In the application of conformal field theory to string theory S-matrix elements are obtained from correlation functions of vertex operators. By studying the relation between the vertex operators for the incoming states and those for the outgoing states we obtain two results: First we show that hermiticity of the string vertices is equivalent to the CPT invariance of the corresponding conformal field theory. Secondly we prove that the S-matrix elements in any string theory in flat space-time background are invariant under CPT. (orig.)

  16. Non-linear σ-models and string theories

    International Nuclear Information System (INIS)

    Sen, A.

    1986-10-01

    The connection between σ-models and string theories is discussed, as well as how the σ-models can be used as tools to prove various results in string theories. Closed bosonic string theory in the light cone gauge is very briefly introduced. Then, closed bosonic string theory in the presence of massless background fields is discussed. The light cone gauge is used, and it is shown that in order to obtain a Lorentz invariant theory, the string theory in the presence of background fields must be described by a two-dimensional conformally invariant theory. The resulting constraints on the background fields are found to be the equations of motion of the string theory. The analysis is extended to the case of the heterotic string theory and the superstring theory in the presence of the massless background fields. It is then shown how to use these results to obtain nontrivial solutions to the string field equations. Another application of these results is shown, namely to prove that the effective cosmological constant after compactification vanishes as a consequence of the classical equations of motion of the string theory. 34 refs

  17. Exactly soluble dynamics of (p,q) string near macroscopic fundamental strings

    International Nuclear Information System (INIS)

    Bak, Dongsu; Rey, Soojong; Yee, Houng

    2004-01-01

    We study dynamics of type-IIB bound-state of a Dirichlet string and n fundamental strings in the background of N fundamental strings. Because of supergravity potential, the bound-state string is pulled to the background fundamental strings, whose motion is described by open string rolling radion field. The string coupling can be made controllably weak and, in the limit 1 2 st n 2 st N, the bound-state energy involved is small compared to the string scale. We thus propose rolling dynamics of open string radion in this system as an exactly solvable analog for rolling dynamics of open string tachyon in decaying D-brane. The dynamics bears a novel feature that the worldsheet electric field increases monotonically to the critical value as the bound-state string falls into the background string. Close to the background string, D string constituent inside the bound-state string decouples from fundamental string constituents. (author)

  18. BRST invariant mixed string vertex for the bosonic string

    International Nuclear Information System (INIS)

    Clarizia, A.; Pezzella, F.

    1987-09-01

    We construct a BRST invariant (N+M)-string vertex including both open and closed string states. When we saturate it with N open string and M closed string physical states it reproduces their corresponding scattering amplitude. As a particular case we obtain BRST invariant vertex for the open-closed string transition. (orig.)

  19. Large-D gravity and low-D strings.

    Science.gov (United States)

    Emparan, Roberto; Grumiller, Daniel; Tanabe, Kentaro

    2013-06-21

    We show that in the limit of a large number of dimensions a wide class of nonextremal neutral black holes has a universal near-horizon limit. The limiting geometry is the two-dimensional black hole of string theory with a two-dimensional target space. Its conformal symmetry explains the properties of massless scalars found recently in the large-D limit. For black branes with string charges, the near-horizon geometry is that of the three-dimensional black strings of Horne and Horowitz. The analogies between the α' expansion in string theory and the large-D expansion in gravity suggest a possible effective string description of the large-D limit of black holes. We comment on applications to several subjects, in particular to the problem of critical collapse.

  20. Introduction to string theory and string compactifications

    International Nuclear Information System (INIS)

    GarcIa-Compean, Hugo

    2005-01-01

    Basics of some topics on perturbative and non-perturbative string theory are reviewed. After a mathematical survey of the Standard Model of particle physics and GUTs, the bosonic string kinematics for the free case and with interaction is described. The effective action of the bosonic string and the spectrum is also discussed. T-duality in closed and open strings and the definition of D-brane are surveyed. Five perturbative superstring theories and their spectra is briefly outlined. Calabi-Yau three-fold compactifications of heterotic strings and their relation to some four-dimensional physics are given. Finally, non-perturbative issues like S-duality, M-theory and F-theory are also reviewed

  1. Open-closed string correspondence in open string field theory

    International Nuclear Information System (INIS)

    Baumgartl, M.; Sachs, I.

    2008-01-01

    We address the problem of describing different closed string backgrounds in background independent open string field theory: A shift in the closed string background corresponds to a collective excitation of open strings. As an illustration we apply the formalism to the case where the closed string background is a group manifold. (Abstract Copyright [2008], Wiley Periodicals, Inc.)

  2. Identification of market trends with string and D2-brane maps

    Science.gov (United States)

    Bartoš, Erik; Pinčák, Richard

    2017-08-01

    The multidimensional string objects are introduced as a new alternative for an application of string models for time series forecasting in trading on financial markets. The objects are represented by open string with 2-endpoints and D2-brane, which are continuous enhancement of 1-endpoint open string model. We show how new object properties can change the statistics of the predictors, which makes them the candidates for modeling a wide range of time series systems. String angular momentum is proposed as another tool to analyze the stability of currency rates except the historical volatility. To show the reliability of our approach with application of string models for time series forecasting we present the results of real demo simulations for four currency exchange pairs.

  3. Strings in the abelized picture

    International Nuclear Information System (INIS)

    Embacher, F.

    1990-01-01

    The transformation properties of the bosonic string variables under the recently discovered abelizing operator are exhibited. The intimate relation of this operator to the light-cone gauge condition is illustrated for the classical string. As an application of the formalism, the derivation of the BRST cohomology by the method of Freemann and Olive is carried over to the abelized picture, where it takes a particularly simple from. (orig.)

  4. Strings in the abelized picture

    International Nuclear Information System (INIS)

    Embacher, F.

    1990-01-01

    The transformation properties of the bosonic string variables under the recently discovered abelizing operator are exhibited. The intimate relation of this operator to the light-cone gauge condition is illustrated for the classical string. As an application of the formalism, the derivation of the BRST cohomology by the method of Freeman and Olive is carried over to the abelized picture, where it takes a particulary simple form. 14 refs. (Author)

  5. A new approach to strings and superstrings

    International Nuclear Information System (INIS)

    Sparano, G.

    1988-01-01

    The subject of this thesis is a new, more general, action principle for strings, superstrings, and extended objects in any number of dimensions. The origin and motivations for this approach can be found in the context of the study of the symmetries of string theories and, more specifically, are related to the application of K.S.K. (Kirillov, Souriau, Kostant) construction to strings. The main results we find are: (A) A classification of string theories analogous to the classification of relativistic point particles as massive, massless and tachionic with or without spin. Nambu-Goto string and Schild null string emerge as special cases of a more general classification of strings. (B) A new method to introduce spin in strings by using a Wess-Zumino term in the action. (C) Several results are obtained through the study of the configuration space which shows a rich topological structure: for the Nambu-Goto string in any number of dimensions it is found the existence of theta states analogous to the theta-vacua of nonabelian gauge theories. For the closed Schild Null string, in four dimensions, this analysis shows Z2 solitons and the possibility of quantizing the system so that the states are spinorial (have half odd integral spin) even though the Lagrangian consists only of bosonic variables. (D) Unlike Nambu-Goto string, the quantization of Schild Null string is consistent in any number of space-time dimensions. Besides these concrete results, the formalism we introduce will hopefully give also new insights in the problem of the hidden symmetries of the string

  6. StarDB: a large-scale DBMS for strings

    KAUST Repository

    Sahli, Majed; Mansour, Essam; Kalnis, Panos

    2015-01-01

    Strings and applications using them are proliferating in science and business. Currently, strings are stored in file systems and processed using ad-hoc procedural code. Existing techniques are not flexible and cannot efficiently handle complex

  7. Compressed Subsequence Matching and Packed Tree Coloring

    DEFF Research Database (Denmark)

    Bille, Philip; Cording, Patrick Hagge; Gørtz, Inge Li

    2017-01-01

    We present a new algorithm for subsequence matching in grammar compressed strings. Given a grammar of size n compressing a string of size N and a pattern string of size m over an alphabet of size \\(\\sigma \\), our algorithm uses \\(O(n+\\frac{n\\sigma }{w})\\) space and \\(O(n+\\frac{n\\sigma }{w}+m\\log N\\log...... w\\cdot occ)\\) or \\(O(n+\\frac{n\\sigma }{w}\\log w+m\\log N\\cdot occ)\\) time. Here w is the word size and occ is the number of minimal occurrences of the pattern. Our algorithm uses less space than previous algorithms and is also faster for \\(occ=o(\\frac{n}{\\log N})\\) occurrences. The algorithm uses...... a new data structure that allows us to efficiently find the next occurrence of a given character after a given position in a compressed string. This data structure in turn is based on a new data structure for the tree color problem, where the node colors are packed in bit strings....

  8. STRING v9.1

    DEFF Research Database (Denmark)

    Franceschini, A.; Simonovic, M.; Roth, A.

    2013-01-01

    for certain model organisms and functional systems. Currently, protein interactions and associations are annotated at various levels of detail in online resources, ranging from raw data repositories to highly formalized pathway databases. For many applications, a global view of all the available interaction...... data is desirable, including lower-quality data and/or computational predictions. The STRING database (http://string-db.org/) aims to provide such a global perspective for as many organisms as feasible. Known and predicted associations are scored and integrated, resulting in comprehensive protein...... networks covering >1100 organisms. Here, we describe the update to version 9.1 of STRING, introducing several improvements: (i) we extend the automated mining of scientific texts for interaction information, to now also include full-text articles; (ii) we entirely re-designed the algorithm for transferring...

  9. Integrated hydraulic booster/tool string technology for unfreezing of stuck downhole strings in horizontal wells

    Science.gov (United States)

    Tian, Q. Z.

    2017-12-01

    It is common to use a jarring tool to unfreeze stuck downhole string. However, in a horizontal well, influenced by the friction caused by the deviated section, jarring effect is poor; on the other hand, the forcing point can be located in the horizontal section by a hydraulic booster and the friction can be reduced, but it is time-consuming and easy to break downhole string using a large-tonnage and constant pull force. A hydraulic booster - jar tool string has been developed for unfreezing operation in horizontal wells. The technical solution involves three elements: a two-stage parallel spring cylinder structure for increasing the energy storage capacity of spring accelerators; multiple groups of spring accelerators connected in series to increase the working stroke; a hydraulic booster intensifying jarring force. The integrated unfreezing tool string based on these three elements can effectively overcome the friction caused by a deviated borehole, and thus unfreeze a stuck string with the interaction of the hydraulic booster and the mechanical jar which form an alternatively dynamic load. Experimental results show that the jarring performance parameters of the hydraulic booster-jar unfreezing tool string for the horizontal wells are in accordance with original design requirements. Then field technical parameters were developed based on numerical simulation and experimental data. Field application shows that the hydraulic booster-jar unfreezing tool string is effective to free stuck downhole tools in a horizontal well, and it reduces hook load by 80% and lessens the requirement of workover equipment. This provides a new technology to unfreeze stuck downhole string in a horizontal well.

  10. Application of the string method to the study of critical nuclei in capillary condensation.

    Science.gov (United States)

    Qiu, Chunyin; Qian, Tiezheng; Ren, Weiqing

    2008-10-21

    We adopt a continuum description for liquid-vapor phase transition in the framework of mean-field theory and use the string method to numerically investigate the critical nuclei for capillary condensation in a slit pore. This numerical approach allows us to determine the critical nuclei corresponding to saddle points of the grand potential function in which the chemical potential is given in the beginning. The string method locates the minimal energy path (MEP), which is the most probable transition pathway connecting two metastable/stable states in configuration space. From the MEP, the saddle point is determined and the corresponding energy barrier also obtained (for grand potential). Moreover, the MEP shows how the new phase (liquid) grows out of the old phase (vapor) along the most probable transition pathway, from the birth of a critical nucleus to its consequent expansion. Our calculations run from partial wetting to complete wetting with a variable strength of attractive wall potential. In the latter case, the string method presents a unified way for computing the critical nuclei, from film formation at solid surface to bulk condensation via liquid bridge. The present application of the string method to the numerical study of capillary condensation shows the great power of this method in evaluating the critical nuclei in various liquid-vapor phase transitions.

  11. Parikh Matching in the Streaming Model

    DEFF Research Database (Denmark)

    Lee, Lap-Kei; Lewenstein, Moshe; Zhang, Qin

    2012-01-01

    Let S be a string over an alphabet Σ = {σ1, σ2, …}. A Parikh-mapping maps a substring S′ of S to a |Σ|-length vector that contains, in location i of the vector, the count of σi in S′. Parikh matching refers to the problem of finding all substrings of a text T which match to a given input |Σ|-leng...

  12. Effective string theory and QCD scattering amplitudes

    International Nuclear Information System (INIS)

    Makeenko, Yuri

    2011-01-01

    QCD string is formed at distances larger than the confinement scale and can be described by the Polchinski-Strominger effective string theory with a nonpolynomial action, which has nevertheless a well-defined semiclassical expansion around a long-string ground state. We utilize modern ideas about the Wilson-loop/scattering-amplitude duality to calculate scattering amplitudes and show that the expansion parameter in the effective string theory is small in the Regge kinematical regime. For the amplitudes we obtain the Regge behavior with a linear trajectory of the intercept (d-2)/24 in d dimensions, which is computed semiclassically as a momentum-space Luescher term, and discuss an application to meson scattering amplitudes in QCD.

  13. Introduction to conformal field theory. With applications to string theory

    International Nuclear Information System (INIS)

    Blumenhagen, Ralph; Plauschinn, Erik

    2009-01-01

    Based on class-tested notes, this text offers an introduction to Conformal Field Theory with a special emphasis on computational techniques of relevance for String Theory. It introduces Conformal Field Theory at a basic level, Kac-Moody algebras, one-loop partition functions, Superconformal Field Theories, Gepner Models and Boundary Conformal Field Theory. Eventually, the concept of orientifold constructions is explained in detail for the example of the bosonic string. In providing many detailed CFT calculations, this book is ideal for students and scientists intending to become acquainted with CFT techniques relevant for string theory but also for students and non-specialists from related fields. (orig.)

  14. Hyperbolic strings

    International Nuclear Information System (INIS)

    Popov, A.D.

    1991-01-01

    We introduce hyperbolic strings as closed bosonic strings with the target space R d-1,1 xT q+1,1 which has an additional time-like dimension in the internal space. The Fock spaces of the q-parametric family of standard bosonic, fermionic and heterotic strings with the target spaces of dimension n≤d+q are shown to be embedded into the Fock space of hyperbolic strings. The condition of the absence of anomaly fixes d and q for all three types of strings written in a bosonized form. (orig.)

  15. String theory

    International Nuclear Information System (INIS)

    Chan Hongmo.

    1987-10-01

    The paper traces the development of the String Theory, and was presented at Professor Sir Rudolf Peierls' 80sup(th) Birthday Symposium. The String theory is discussed with respect to the interaction of strings, the inclusion of both gauge theory and gravitation, inconsistencies in the theory, and the role of space-time. The physical principles underlying string theory are also outlined. (U.K.)

  16. D-strings in unconventional type I vacuum configurations

    International Nuclear Information System (INIS)

    Bianchi, M.; Gava, E.; Morales, F.; Narain, K.S.

    1998-11-01

    We determine the spectrum of D-string bound states in various classes of generalized type I vacuum configurations with sixteen and eight supercharges. The precise matching of the BPS spectra confirms the duality between unconventional type IIB orientfolds with quantized NS-NS antisymmetric tensor and heterotic CHL models in D=8. A similar analysis puts the duality between type II (4,0) models and type I strings without open strings on a firmer ground. The analysis can be extended to type II (2,0) asymmetric orbifolds and their type I duals that correspond to unconventional K3 compactifications. Finally we discuss BPS-saturated threshold corrections to the corresponding low-energy effective lagrangians. In particular we show how the exact moduli dependence of some F 4 terms in the eight-dimensional type II (4,0) orbifold is reproduced by the infinite sum of D-instanton contributions in the dual type I theory. (author)

  17. Multi-loop string amplitudes and Riemann surfaces

    International Nuclear Information System (INIS)

    Taylor, J.G.

    1986-01-01

    The paper was presented at the workshop on 'Supersymmetry and its applications', Cambridge, United Kingdom, 1985. Super-string theory is discussed under the following topic headings: the functional approach to the string amplitude, Rieman surfaces, the determinants Δsub(epsilon)(1) and Δsub(epsilon)(2), Green's functions, total amplitude, and divergence analysis. (U.K.)

  18. Duality relation between charged elastic strings and superconducting cosmic strings

    International Nuclear Information System (INIS)

    Carter, B.

    1989-01-01

    The mechanical properties of macroscopic electromagnetically coupled string models in a flat or curved background are treated using a covariant formalism allowing the construction of a duality transformation that relates the category of uniform ''electric'' string models, constructed as the (nonconducting) charged generalisation of ordinary uncoupled (violin type) elastic strings, to a category of ''magnetic'' string models comprising recently discussed varieties of ''superconducting cosmic strings''. (orig.)

  19. A reduced covariant string model for the extrinsic string

    International Nuclear Information System (INIS)

    Botelho, L.C.L.

    1989-01-01

    It is studied a reduced covariant string model for the extrinsic string by using Polyakov's path integral formalism. On the basis of this reduced model it is suggested that the extrinsic string has its critical dimension given by 13. Additionally, it is calculated in a simple way Poliakov's renormalization group law for the string rigidity coupling constants. (A.C.A.S.) [pt

  20. The heterotic string

    International Nuclear Information System (INIS)

    Gross, D.J.

    1986-01-01

    Traditional string theories, either bosonic or supersymmetric, came in two varieties, closed string theories and open string theories. Closed string are neutral objects which describe at low energies gravity or supergravity. Open strings have geometrically invariant ends to which charge can be attached, thereby obtaining, in addition to gravity, Yang-Mills gauge interactions. Recently a new kind of string theory was discovered--the heterotic string, which is a chiral hybrid of the closed superstring and the closed bosonic string, and which produces by an internal dynamical mechanism gauge interactions of a totally specified kind. Although this theory is found in an attempt to produce a superstring theory which would yield a low energy E/sub 8/xE/sub 8/ supersymmetric, anomaly free, gauge theory, as suggested by the anomaly cancellation mechanism of Green and Schwarz, it fits naturally into the general framework of consistent string theories

  1. String Gas Cosmology

    OpenAIRE

    Brandenberger, Robert H.

    2008-01-01

    String gas cosmology is a string theory-based approach to early universe cosmology which is based on making use of robust features of string theory such as the existence of new states and new symmetries. A first goal of string gas cosmology is to understand how string theory can effect the earliest moments of cosmology before the effective field theory approach which underlies standard and inflationary cosmology becomes valid. String gas cosmology may also provide an alternative to the curren...

  2. Semantic Data Matching: Principles and Performance

    Science.gov (United States)

    Deaton, Russell; Doan, Thao; Schweiger, Tom

    Automated and real-time management of customer relationships requires robust and intelligent data matching across widespread and diverse data sources. Simple string matching algorithms, such as dynamic programming, can handle typographical errors in the data, but are less able to match records that require contextual and experiential knowledge. Latent Semantic Indexing (LSI) (Berry et al. ; Deerwester et al. is a machine intelligence technique that can match data based upon higher order structure, and is able to handle difficult problems, such as words that have different meanings but the same spelling, are synonymous, or have multiple meanings. Essentially, the technique matches records based upon context, or mathematically quantifying when terms occur in the same record.

  3. Chern-Simons couplings for dielectric F-strings in matrix string theory

    International Nuclear Information System (INIS)

    Brecher, Dominic; Janssen, Bert; Lozano, Yolanda

    2002-01-01

    We compute the non-abelian couplings in the Chern-Simons action for a set of coinciding fundamental strings in both the type IIA and type IIB Matrix string theories. Starting from Matrix theory in a weakly curved background, we construct the linear couplings of closed string fields to type IIA Matrix strings. Further dualities give a type IIB Matrix string theory and a type IIA theory of Matrix strings with winding. (Abstract Copyright[2002], Wiley Periodicals, Inc.)

  4. A string theory which isn't about strings

    Science.gov (United States)

    Lee, Kanghoon; Rey, Soo-Jong; Rosabal, J. A.

    2017-11-01

    Quantization of closed string proceeds with a suitable choice of worldsheet vacuum. A priori, the vacuum may be chosen independently for left-moving and right-moving sectors. We construct ab initio quantized bosonic string theory with left-right asymmetric worldsheet vacuum and explore its consequences and implications. We critically examine the validity of new vacuum and carry out first-quantization using standard operator formalism. Remarkably, the string spectrum consists only of a finite number of degrees of freedom: string gravity (massless spin-two, Kalb-Ramond and dilaton fields) and two massive spin-two Fierz-Pauli fields. The massive spin-two fields have negative norm, opposite mass-squared, and provides a Lee-Wick type extension of string gravity. We compute two physical observables: tree-level scattering amplitudes and one-loop cosmological constant. Scattering amplitude of four dilatons is shown to be a rational function of kinematic invariants, and in D = 26 factorizes into contributions of massless spin-two and a pair of massive spin-two fields. The string one loop partition function is shown to perfectly agree with one loop Feynman diagram of string gravity and two massive spin-two fields. In particular, it does not exhibit modular invariance. We critically compare our construction with recent studies and contrast differences.

  5. Vortex-strings in N=2 SQCD and bulk-string decoupling

    Science.gov (United States)

    Gerchkovitz, Efrat; Karasik, Avner

    2018-02-01

    We study vortex-strings in four-dimensional N=2 supersymmetric SU( N c ) × U(1) gauge theories with N f hypermultiplets in the fundamental representation of SU( N c ) and general U(1) charges. If N f > N c , the vacuum is not gapped and the low-energy theory contains both the vacuum massless excitations and the string zero-modes. The question we address in this work is whether the vacuum and the string moduli decouple at low energies, allowing a description of the low-energy dynamics in terms of a two-dimensional theory on the string worldsheet. We find a simple condition controlling the bulk-string coupling: if there exist two flavors such that the product of their U(1) charge difference with the magnetic flux carried by the string configuration is not an integer multiple of 2 π, the string has zero-modes that decay slower than 1 /r, where r is the radial distance from the string core. These modes are coupled to the vacuum massless excitations even at low energies. If, however, all such products are integer multiples of 2 π, long-range modes of this type do not exist and the string moduli decouple from the bulk at low energies. This condition turns out to coincide with the condition of trivial Aharonov-Bohm phases for the particles in the spectrum. In addition to a derivation of the bulk-string decoupling criterion using classical analysis of the string zero-modes, we provide a non-perturbative derivation of the criterion, which uses supersymmetric localization techniques.

  6. StringForce

    DEFF Research Database (Denmark)

    Barendregt, Wolmet; Börjesson, Peter; Eriksson, Eva

    2017-01-01

    In this paper, we present the forced collaborative interaction game StringForce. StringForce is developed for a special education context to support training of collaboration skills, using readily available technologies and avoiding the creation of a "mobile bubble". In order to play String......Force two or four physically collocated tablets are required. These tablets are connected to form one large shared game area. The game can only be played by collaborating. StringForce extends previous work, both technologically and regarding social-emotional training. We believe String......Force to be an interesting demo for the IDC community, as it intertwines several relevant research fields, such as mobile interaction and collaborative gaming in the special education context....

  7. Bosonic strings

    CERN Document Server

    Jost, Jürgen

    2007-01-01

    This book presents a mathematical treatment of Bosonic string theory from the point of view of global geometry. As motivation, Jost presents the theory of point particles and Feynman path integrals. He provides detailed background material, including the geometry of Teichmüller space, the conformal and complex geometry of Riemann surfaces, and the subtleties of boundary regularity questions. The high point is the description of the partition function for Bosonic strings as a finite-dimensional integral over a moduli space of Riemann surfaces. Jost concludes with some topics related to open and closed strings and D-branes. Bosonic Strings is suitable for graduate students and researchers interested in the mathematics underlying string theory.

  8. String cosmology. Large-field inflation in string theory

    International Nuclear Information System (INIS)

    Westphal, Alexander

    2014-09-01

    This is a short review of string cosmology. We wish to connect string-scale physics as closely as possible to observables accessible to current or near-future experiments. Our possible best hope to do so is a description of inflation in string theory. The energy scale of inflation can be as high as that of Grand Unification (GUT). If this is the case, this is the closest we can possibly get in energy scales to string-scale physics. Hence, GUT-scale inflation may be our best candidate phenomenon to preserve traces of string-scale dynamics. Our chance to look for such traces is the primordial gravitational wave, or tensor mode signal produced during inflation. For GUT-scale inflation this is strong enough to be potentially visible as a B-mode polarization of the cosmic microwave background (CMB). Moreover, a GUT-scale inflation model has a trans-Planckian excursion of the inflaton scalar field during the observable amount of inflation. Such large-field models of inflation have a clear need for symmetry protection against quantum corrections. This makes them ideal candidates for a description in a candidate fundamental theory like string theory. At the same time the need of large-field inflation models for UV completion makes them particularly susceptible to preserve imprints of their string-scale dynamics in the inflationary observables, the spectral index n s and the fractional tensor mode power r. Hence, we focus this review on axion monodromy inflation as a mechanism of large-field inflation in string theory.

  9. Topics in supergravity and string theory

    International Nuclear Information System (INIS)

    Eastaugh, A.G.

    1987-01-01

    The first topic covered in this dissertation concerns the harmonic expansion technique and its application to the dimensional compactification of higher dimensional supergravity. A simple example is given to explain the method and then the method is applied to the problem of obtaining the mass spectrum of the squashed seven-sphere compactification of eleven dimensional supergravity. The second topic concerns the application of Fujikawa's method of anomaly calculation to the calculation of the critical dimension of various string models. The third topic is a study and explicit calculation of the Fock space representation of the vertex in Witten's formulation of the interacting open bosonic string field theory

  10. Boundary string field theory and an open string one-loop

    International Nuclear Information System (INIS)

    Lee, Tae Jin; Viswanathan, K. S.; Yang, Yi

    2003-01-01

    We discuss the open string one-loop partition function in the tachyon condensation background of an unstable D-brane system. We evaluate the partition function by using the boundary-state formulation and find that it is in complete agreement with the result obtained in the boundary string field theory. This suggests that the open string higher loop diagrams may be produced consistently by using a closed string field theory, where the D-brane plays the role of a source for the closed string field

  11. Hot String Soup

    OpenAIRE

    Lowe, D. A.; Thorlacius, L.

    1994-01-01

    Above the Hagedorn energy density closed fundamental strings form a long string phase. The dynamics of weakly interacting long strings is described by a simple Boltzmann equation which can be solved explicitly for equilibrium distributions. The average total number of long strings grows logarithmically with total energy in the microcanonical ensemble. This is consistent with calculations of the free single string density of states provided the thermodynamic limit is carefully defined. If the ...

  12. String-driven inflation

    International Nuclear Information System (INIS)

    Turok, N.

    1988-01-01

    It is argued that, in fundamental string theories, as one traces the universe back in time a point is reached when the expansion rate is so fast that the rate of string creation due to quantum effects balances the dilution of the string density due to the expansion. One is therefore led into a phase of constant string density and an exponentially expanding universe. Fundamental strings therefore seem to lead naturally to inflation

  13. Cosmic global strings

    International Nuclear Information System (INIS)

    Sikivie, P.

    1991-01-01

    The topics are: global strings; the gravitational field of a straight global string; how do global strings behave?; the axion cosmological energy density; computer simulations of the motion and decay of global strings; electromagnetic radiation from the conversion of Nambu-Goldstone bosons in astrophysical magnetic fields. (orig.)

  14. Reconstruction of piano hammer force from string velocity.

    Science.gov (United States)

    Chaigne, Antoine

    2016-11-01

    A method is presented for reconstructing piano hammer forces through appropriate filtering of the measured string velocity. The filter design is based on the analysis of the pulses generated by the hammer blow and propagating along the string. In the five lowest octaves, the hammer force is reconstructed by considering two waves only: the incoming wave from the hammer and its first reflection at the front end. For the higher notes, four- or eight-wave schemes must be considered. The theory is validated on simulated string velocities by comparing imposed and reconstructed forces. The simulations are based on a nonlinear damped stiff string model previously developed by Chabassier, Chaigne, and Joly [J. Acoust. Soc. Am. 134(1), 648-665 (2013)]. The influence of absorption, dispersion, and amplitude of the string waves on the quality of the reconstruction is discussed. Finally, the method is applied to real piano strings. The measured string velocity is compared to the simulated velocity excited by the reconstructed force, showing a high degree of accuracy. A number of simulations are compared to simulated strings excited by a force derived from measurements of mass and acceleration of the hammer head. One application to an historic piano is also presented.

  15. Heterotic sigma models and non-linear strings

    International Nuclear Information System (INIS)

    Hull, C.M.

    1986-01-01

    The two-dimensional supersymmetric non-linear sigma models are examined with respect to the heterotic string. The paper was presented at the workshop on :Supersymmetry and its applications', Cambridge, United Kingdom, 1985. The non-linear sigma model with Wess-Zumino-type term, the coupling of the fermionic superfields to the sigma model, super-conformal invariance, and the supersymmetric string, are all discussed. (U.K.)

  16. String driven inflation

    International Nuclear Information System (INIS)

    Turok, N.

    1987-11-01

    It is argued that, in fundamental string theories, as one traces the universe back in time a point is reached when the expansion rate is so fast that the rate of string creation due to quantum effects balances the dilution of the string density due to the expansion. One is therefore led into a phase of constant string density and an exponentially expanding universe. Fundamental strings therefore seem to lead naturally to inflation. 17 refs., 1 fig

  17. A Review of the Evaluation, Control, and Application Technologies for Drill String Vibrations and Shocks in Oil and Gas Well

    Directory of Open Access Journals (Sweden)

    Guangjian Dong

    2016-01-01

    Full Text Available Drill string vibrations and shocks (V&S can limit the optimization of drilling performance, which is a key problem for trajectory optimizing, wellbore design, increasing drill tools life, rate of penetration, and intelligent drilling. The directional wells and other special trajectory drilling technologies are often used in deep water, deep well, hard rock, and brittle shale formations. In drilling these complex wells, the cost caused by V&S increases. According to past theories, indoor experiments, and field studies, the relations among ten kinds of V&S, which contain basic forms, response frequency, and amplitude, are summarized and discussed. Two evaluation methods are compared systematically, such as theoretical and measurement methods. Typical vibration measurement tools are investigated and discussed. The control technologies for drill string V&S are divided into passive control, active control, and semiactive control. Key methods for and critical equipment of three control types are compared. Based on the past development, a controlling program of drill string V&S is devised. Application technologies of the drill string V&S are discussed, such as improving the rate of penetration, controlling borehole trajectory, finding source of seismic while drilling, and reducing the friction of drill string. Related discussions and recommendations for evaluating, controlling, and applying the drill string V&S are made.

  18. The Kadomtsev-Petviashvili equations and fundamental string theory

    International Nuclear Information System (INIS)

    Gilbert, G.

    1988-01-01

    In this paper the infinite sequence of non-linear partial differential equations known as the Kadomtsev-Petviashvili equations is described in simple terms and possible applications to a fundamental description of interacting strings are addressed. Lines of research likely to prove useful in formulating a description of non-perturbative string configurations are indicated. (orig.)

  19. String field theory solution for any open string background

    Czech Academy of Sciences Publication Activity Database

    Erler, T.; Maccaferri, Carlo

    2014-01-01

    Roč. 10, Oct (2014), 1-37 ISSN 1029-8479 R&D Projects: GA ČR GBP201/12/G028 Institutional support: RVO:68378271 Keywords : tachyon condensation * string field theory * conformal field models in string theory * bosonic strings Subject RIV: BE - Theoretical Physics Impact factor: 6.111, year: 2014

  20. Lattice strings

    International Nuclear Information System (INIS)

    Thorn, C.B.

    1988-01-01

    The possibility of studying non-perturbative effects in string theory using a world sheet lattice is discussed. The light-cone lattice string model of Giles and Thorn is studied numerically to assess the accuracy of ''coarse lattice'' approximations. For free strings a 5 by 15 lattice seems sufficient to obtain better than 10% accuracy for the bosonic string tachyon mass squared. In addition a crude lattice model simulating string like interactions is studied to find out how easily a coarse lattice calculation can pick out effects such as bound states which would qualitatively alter the spectrum of the free theory. The role of the critical dimension in obtaining a finite continuum limit is discussed. Instead of the ''gaussian'' lattice model one could use one of the vertex models, whose continuum limit is the same as a gaussian model on a torus of any radius. Indeed, any critical 2 dimensional statistical system will have a stringy continuum limit in the absence of string interactions. 8 refs., 1 fig. , 9 tabs

  1. String-coupling constant and dilaton vacuum expectation value in string field theory

    International Nuclear Information System (INIS)

    Yoneya, Tamiaki

    1987-01-01

    In the first quantized approaches to strings, it is well known that the string-coupling constant is determined by the vacuum expectation value of the dilaton field. This property, however, has never been demonstrated within the framework of string field theory. An explicit reparametrization of the string field associated with the shifts of the dilaton vacuum expectation value and the string-coupling constant is constructed exhibiting the above property in the light-cone field theory of the closed bosonic string. (orig.)

  2. StarDB: a large-scale DBMS for strings

    KAUST Repository

    Sahli, Majed

    2015-08-01

    Strings and applications using them are proliferating in science and business. Currently, strings are stored in file systems and processed using ad-hoc procedural code. Existing techniques are not flexible and cannot efficiently handle complex queries or large datasets. In this paper, we demonstrate StarDB, a distributed database system for analytics on strings. StarDB hides data and system complexities and allows users to focus on analytics. It uses a comprehensive set of parallel string operations and provides a declarative query language to solve complex queries. StarDB automatically tunes itself and runs with over 90% efficiency on supercomputers, public clouds, clusters, and workstations. We test StarDB using real datasets that are 2 orders of magnitude larger than the datasets reported by previous works.

  3. Les Houches lectures on matrix models and topological strings

    CERN Document Server

    Marino, M

    2004-01-01

    In these lecture notes for the Les Houches School on Applications of Random Matrices in Physics we give an introduction to the connections between matrix models and topological strings. We first review some basic results of matrix model technology and then we focus on type B topological strings. We present the main results of Dijkgraaf and Vafa describing the spacetime string dynamics on certain Calabi-Yau backgrounds in terms of matrix models, and we emphasize the connection to geometric transitions and to large N gauge/string duality. We also use matrix model technology to analyze large N Chern-Simons theory and the Gopakumar-Vafa transition.

  4. String model for the dynamics of glass-forming liquids.

    Science.gov (United States)

    Pazmiño Betancourt, Beatriz A; Douglas, Jack F; Starr, Francis W

    2014-05-28

    We test the applicability of a living polymerization theory to describe cooperative string-like particle rearrangement clusters (strings) observed in simulations of a coarse-grained polymer melt. The theory quantitatively describes the interrelation between the average string length L, configurational entropy Sconf, and the order parameter for string assembly Φ without free parameters. Combining this theory with the Adam-Gibbs model allows us to predict the relaxation time τ in a lower temperature T range than accessible by current simulations. In particular, the combined theories suggest a return to Arrhenius behavior near Tg and a low T residual entropy, thus avoiding a Kauzmann "entropy crisis."

  5. Closed string field theory

    International Nuclear Information System (INIS)

    Strominger, A.

    1987-01-01

    A gauge invariant cubic action describing bosonic closed string field theory is constructed. The gauge symmetries include local spacetime diffeomorphisms. The conventional closed string spectrum and trilinear couplings are reproduced after spontaneous symmetry breaking. The action S is constructed from the usual ''open string'' field of ghost number minus one half. It is given by the associator of the string field product which is non-vanishing because of associativity anomalies. S does not describe open string propagation because open string states associate and can thereby be shifted away. A field theory of closed and open strings can be obtained by adding to S the cubic open string action. (orig.)

  6. Mobile Application for Pesticide Label Matching

    Science.gov (United States)

    The label matching application will give inspectors the ability to instantly compare pesticide product labels against state and federal label databases via their cell phone, tablet or other mobile device.

  7. Electron string phenomenon: physics and use

    International Nuclear Information System (INIS)

    Donets, Evgeny D

    2004-01-01

    Electron string phenomenon arises as a result of phase transition of a state of multiply reflected electron beam to this new discovered state of one component electron plasma and can be easily observed in the reflex mode of EBIS operation. The transition goes via a strong instability, which causes considerable electron energy spread, which in its turn suppresses the instability. Electron string state is a stationary state of hot pure electron plasma, which is heated by injected electron beam and cooled because of electron loses. Electron string is quiet in broad regions of experimental parameters, so that it is used for confinement and ionization of positive ions by electron impact to highly charge states similar to electron beams in EBIS. Application of electron strings instead of electron beams for ion production allows to save about 99% of electric power of electron beam and simultaneously to improve reliability of an ion source considerably. The JINR EBIS 'Krion-2' in the string mode of operation is used for production of N 7+ , Ar 16+ and Fe 24+ ion beams and their acceleration to relativistic energies on the facility of the JINR super conducting one turn injection synchrotron 'Nuklotron'. The tubular electron string possibly can exist and it is under study now theoretically and experiments are prepared now. Estimations show that a Tubular Electron String Ion Source (TESIS) could have up to three orders of magnitude higher ion output then a Linear one (LESIS). In frames of nuclear astrophysics electron strings can be used for research of fusion nuclear reactions at low energies in conditions when both beam and target nuclei do not carry orbital electrons. The project NARITA - Nuclear Astrophysics Researches in an Ion Trap Apparatus is proposed. Polarization effects also can be studied

  8. Electron string phenomenon: physics and use

    Science.gov (United States)

    Donets, Evgeny D.

    2004-01-01

    Electron string phenomenon arises as a result of phase transition of a state of multiply reflected electron beam to this new discovered state of one component electron plasma and can be easily observed in the reflex mode of EBIS operation. The transition goes via a strong instability, which causes considerable electron energy spread, which in its turn suppresses the instability. Electron string state is a stationary state of hot pure electron plasma, which is heated by injected electron beam and cooled because of electron loses. Electron string is quiet in broad regions of experimental parameters, so that it is used for confinement and ionization of positive ions by electron impact to highly charge states similar to electron beams in EBIS. Application of electron strings instead of electron beams for ion production allows to save about 99% of electric power of electron beam and simultaneously to improve reliability of an ion source considerably. The JINR EBIS `Krion-2' in the string mode of operation is used for production of N7+, Ar16+ and Fe24+ ion beams and their acceleration to relativistic energies on the facility of the JINR super conducting one turn injection synchrotron `Nuklotron'. The tubular electron string possibly can exist and it is under study now theoretically and experiments are prepared now. Estimations show that a Tubular Electron String Ion Source (TESIS) could have up to three orders of magnitude higher ion output then a Linear one (LESIS). In frames of nuclear astrophysics electron strings can be used for research of fusion nuclear reactions at low energies in conditions when both beam and target nuclei do not carry orbital electrons. The project NARITA — Nuclear Astrophysics Researches in an Ion Trap Apparatus is proposed. Polarization effects also can be studied.

  9. Minimal open strings

    International Nuclear Information System (INIS)

    Hosomichi, Kazuo

    2008-01-01

    We study FZZT-branes and open string amplitudes in (p, q) minimal string theory. We focus on the simplest boundary changing operators in two-matrix models, and identify the corresponding operators in worldsheet theory through the comparison of amplitudes. Along the way, we find a novel linear relation among FZZT boundary states in minimal string theory. We also show that the boundary ground ring is realized on physical open string operators in a very simple manner, and discuss its use for perturbative computation of higher open string amplitudes.

  10. Mechanical and mathematical models of multi-stage horizontal fracturing strings and their application

    Directory of Open Access Journals (Sweden)

    Zhanghua Lian

    2015-03-01

    Full Text Available Multi-stage SRV fracturing in horizontal wells is a new technology developed at home and abroad in recent years to effectively develop shale gas or low-permeability reservoirs, but on the other hand makes the mechanical environment of fracturing strings more complicated at the same time. In view of this, based on the loading features of tubing strings during the multi-stage fracturing of a horizontal well, mechanical models were established for three working cases of multiple packer setting, open differential-pressure sliding sleeve, and open ball-injection sliding sleeve under a hold-down packer. Moreover, mathematical models were respectively built for the above three cases. According to the Lame formula and Von Mises stress calculation formula for the thick-walled cylinder in the theory of elastic mechanics, a mathematical model was also established to calculate the equivalent stress for tubing string safety evaluation when the fracturing string was under the combined action of inner pressure, external squeezing force and axial stress, and another mathematical model was built for the mechanical strength and safety evaluation of multi-stage fracturing strings. In addition, a practical software was developed for the mechanical safety evaluation of horizontal well multi-stage fracturing strings according to the mathematical model developed for the mechanical calculation of the multi-packer string in horizontal wells. The research results were applied and verified in a gas well of Tahe Oilfield in the Tarim Basin with excellent effects, providing a theoretical basis and a simple and reliable technical means for optimal design and safety evaluation of safe operational parameters of multi-stage fracturing strings in horizontal wells.

  11. Heterotic strings on homogeneous spaces

    International Nuclear Information System (INIS)

    Israel, D.; Kounnas, C.; Orlando, D.; Petropoulos, P.M.

    2005-01-01

    We construct heterotic string backgrounds corresponding to families of homogeneous spaces as exact conformal field theories. They contain left cosets of compact groups by their maximal tori supported by NS-NS 2-forms and gauge field fluxes. We give the general formalism and modular-invariant partition functions, then we consider some examples such as SU(2)/U(1)∝S 2 (already described in a previous paper) and the SU(3)/U(1) 2 flag space. As an application we construct new supersymmetric string vacua with magnetic fluxes and a linear dilaton. (Abstract Copyright [2005], Wiley Periodicals, Inc.)

  12. String necklaces and primordial black holes from type IIB strings

    International Nuclear Information System (INIS)

    Lake, Matthew; Thomas, Steve; Ward, John

    2009-01-01

    We consider a model of static cosmic string loops in type IIB string theory, where the strings wrap cycles within the internal space. The strings are not topologically stabilised, however the presence of a lifting potential traps the windings giving rise to kinky cycloops. We find that PBH formation occurs at early times in a small window, whilst at late times we observe the formation of dark matter relics in the scaling regime. This is in stark contrast to previous predictions based on field theoretic models. We also consider the PBH contribution to the mass density of the universe, and use the experimental data to impose bounds on the string theory parameters.

  13. Invariant strings and pattern-recognizing properties of one-dimensional cellular automata

    International Nuclear Information System (INIS)

    Jen, E.

    1986-01-01

    A cellular automaton is a discrete dynamical system whose evolution is governed by a deterministic rule involving local interactions. It is shown that given an arbitrary string of values and an arbitry neighborhood size (representing the range of interaction), a simple procedure can be used to find the fules of that neighborhood size under which the string is unvarian. The set of nearestneighbor rules for which invariant strings exist is completely specified, as is the set of strings invariant under each such rule. For any automaton rule, an associated ''filtering'' rule is defined for which the only attractors are spatial sequences consisting of concatenations of invariant strings. A result is provided defining the rule of minimum neighborhood size for which an arbitrrily chosen string is the unique invariant string. The applications of filtering rules to pttern recognition problems are discussed

  14. Coulomb string tension, asymptotic string tension, and the gluon chain

    OpenAIRE

    Greensite, Jeff; Szczepaniak, Adam P.

    2014-01-01

    We compute, via numerical simulations, the non-perturbative Coulomb potential of pure SU(3) gauge theory in Coulomb gauge. We find that that the Coulomb potential scales nicely in accordance with asymptotic freedom, that the Coulomb potential is linear in the infrared, and that the Coulomb string tension is about four times larger than the asymptotic string tension. We explain how it is possible that the asymptotic string tension can be lower than the Coulomb string tension by a factor of four.

  15. On Field Theory of Open Strings, Tachyon Condensation and Closed Strings

    OpenAIRE

    Shatashvili, Samson L.

    2001-01-01

    I review the physical properties of different vacua in the background independent open string field theory. Talk presented at Strings 2001, Mumbai, India, http://theory.theory.tifr.res.in/strings/Proceedings/#sha-s.

  16. Closed Strings From Nothing

    Energy Technology Data Exchange (ETDEWEB)

    Lawrence, Albion

    2001-07-25

    We study the physics of open strings in bosonic and type II string theories in the presence of unstable D-branes. When the potential energy of the open string tachyon is at its minimum, Sen has argued that only closed strings remain in the perturbative spectrum. We explore the scenario of Yi and of Bergman, Hori and Yi, who argue that the open string degrees of freedom are strongly coupled and disappear through confinement. We discuss arguments using open string field theory and worldsheet boundary RG flows, which seem to indicate otherwise. We then describe a solitonic excitation of the open string tachyon and gauge field with the charge and tension of a fundamental closed string. This requires a double scaling limit where the tachyon is taken to its minimal value and the electric field is taken to its maximum value. The resulting flux tube has an unconstrained spatial profile; and for large fundamental string charge, it appears to have light, weakly coupled open strings living in the core. We argue that the flux tube acquires a size or order {alpha}' through sigma model and string coupling effects; and we argue that confinement effects make the light degrees of freedom heavy and strongly interacting.

  17. Closed Strings From Nothing

    International Nuclear Information System (INIS)

    Lawrence, Albion

    2001-01-01

    We study the physics of open strings in bosonic and type II string theories in the presence of unstable D-branes. When the potential energy of the open string tachyon is at its minimum, Sen has argued that only closed strings remain in the perturbative spectrum. We explore the scenario of Yi and of Bergman, Hori and Yi, who argue that the open string degrees of freedom are strongly coupled and disappear through confinement. We discuss arguments using open string field theory and worldsheet boundary RG flows, which seem to indicate otherwise. We then describe a solitonic excitation of the open string tachyon and gauge field with the charge and tension of a fundamental closed string. This requires a double scaling limit where the tachyon is taken to its minimal value and the electric field is taken to its maximum value. The resulting flux tube has an unconstrained spatial profile; and for large fundamental string charge, it appears to have light, weakly coupled open strings living in the core. We argue that the flux tube acquires a size or order α' through sigma model and string coupling effects; and we argue that confinement effects make the light degrees of freedom heavy and strongly interacting

  18. How to simulate global cosmic strings with large string tension

    Energy Technology Data Exchange (ETDEWEB)

    Klaer, Vincent B.; Moore, Guy D., E-mail: vklaer@theorie.ikp.physik.tu-darmstadt.de, E-mail: guy.moore@physik.tu-darmstadt.de [Institut für Kernphysik, Technische Universität Darmstadt, Schlossgartenstraße 2, Darmstadt, D-64289 Germany (Germany)

    2017-10-01

    Global string networks may be relevant in axion production in the early Universe, as well as other cosmological scenarios. Such networks contain a large hierarchy of scales between the string core scale and the Hubble scale, ln( f {sub a} / H ) ∼ 70, which influences the network dynamics by giving the strings large tensions T ≅ π f {sub a} {sup 2} ln( f {sub a} / H ). We present a new numerical approach to simulate such global string networks, capturing the tension without an exponentially large lattice.

  19. String field theory

    International Nuclear Information System (INIS)

    Kaku, M.

    1987-01-01

    In this article, the authors summarize the rapid progress in constructing string field theory actions, such as the development of the covariant BRST theory. They also present the newer geometric formulation of string field theory, from which the BRST theory and the older light cone theory can be derived from first principles. This geometric formulation allows us to derive the complete field theory of strings from two geometric principles, in the same way that general relativity and Yang-Mills theory can be derived from two principles based on global and local symmetry. The geometric formalism therefore reduces string field theory to a problem of finding an invariant under a new local gauge group they call the universal string group (USG). Thus, string field theory is the gauge theory of the universal string group in much the same way that Yang-Mills theory is the gauge theory of SU(N). The geometric formulation places superstring theory on the same rigorous group theoretical level as general relativity and gauge theory

  20. BPS limit of multi- D- and DF-strings in boundary string field theory

    International Nuclear Information System (INIS)

    Go, Gyungchoon; Ishida, Akira; Kim, Yoonbai

    2007-01-01

    A BPS limit is systematically derived for straight multi- D- and DF-strings from the D3D-bar3 system in the context of boundary superstring field theory. The BPS limit is obtained in the limit of thin D(F)-strings, where the Bogomolny equation supports singular static multi-D(F)-string solutions. For the BPS multi-string configurations with arbitrary separations, BPS sum rule is fulfilled under a Gaussian type tachyon potential and reproduces exactly the descent relation. For the DF-strings ((p,q)-strings), the distribution of fundamental string charge density coincides with its energy density and the Hamiltonian density takes the BPS formula of square-root form

  1. The arithmetic of strings

    International Nuclear Information System (INIS)

    Freund, P.G.O.

    1988-01-01

    According to the author nobody has succeeded as yet in extracting any new numbers from string theory. This paper discusses how if one cannot get new numbers from string theory, maybe one can get new strings out of number theory. Number theory is generally regarded as the purest form of mathematics. So how can it conceivably make contact with physics which aims at describing nature? The author discusses how the connecting link of these two disciplines is provided by the compact Riemann surfaces. These appear as world sheets of interacting strings. For instance, string-string scattering at the three-loop level involves the four external strings attaching themselves to a genus three compact surface

  2. Bowed Strings

    Science.gov (United States)

    Rossing, Thomas D.; Hanson, Roger J.

    In the next eight chapters, we consider some aspects of the science of bowed string instruments, old and new. In this chapter, we present a brief discussion of bowed strings, a subject that will be developed much more thoroughly in Chap. 16. Chapters 13-15 discuss the violin, the cello, and the double bass. Chapter 17 discusses viols and other historic string instruments, and Chap. 18 discusses the Hutchins-Schelleng violin octet.

  3. The theta-structure in string theories - 1: bosonic strings

    International Nuclear Information System (INIS)

    Li Miao.

    1985-09-01

    We explored the theta-structures in bosonic string theories which are similar to those in gauge field theories. The theta-structure of string is due to the multiply connected spatial compact subspace of space-time. The work of this paper shows that there is an energy band E(theta) in the string theory and one may move the tachyon out in theory by choosing some proper theta parameters. (author)

  4. General relativistic model of a spinning cosmic string

    International Nuclear Information System (INIS)

    Jensen, B.; Soleng, H.H.

    1991-11-01

    The authors investigate the infinite, straight, rotating cosmic string within the framework of Einstein's General Theory of Relativity. A class of exact interior solutions is derived for which the source satisfies the weak and the dominant energy conditions. The interior metric is matched smoothly to the exterior vacuum. A subclass of these solutions has closed time-like curves both in the interior and the exterior geometry. 39 refs., 2 figs

  5. Unmatched U.S. Allopathic Seniors in the 2015 Main Residency Match: A Study of Applicant Behavior, Interview Selection, and Match Outcome.

    Science.gov (United States)

    Liang, Mei; Curtin, Laurie S; Signer, Mona M; Savoia, Maria C

    2017-07-01

    The application and interview behaviors of unmatched U.S. allopathic medical school senior students (U.S. seniors) participating in the 2015 National Resident Matching Program (NRMP) Main Residency Match were studied in conjunction with their United States Medical Licensing Examination (USMLE) Step 1 scores and ranking preferences to understand their effects on Match outcome. USMLE Step 1 score and preferred specialty information were reviewed for U.S. seniors who responded to the 2015 NRMP Applicant Survey. Unmatched U.S. seniors were categorized as "strong," "solid," "marginal," or "weak" based on the perceived competitiveness of their Step 1 scores compared with U.S. seniors who matched in the same preferred specialty. The numbers of applications sent, interviews obtained, and programs ranked also were examined by Match outcome. Strong unmatched U.S. seniors submitted significantly more applications to achieve and attend approximately the same number of interviews as strong matched U.S. seniors. Strong unmatched seniors ranked fewer programs than their matched counterparts. As a group, unmatched U.S. seniors were less likely than their matched counterparts to rank a mix of competitive and less competitive programs and more likely to rank programs based on their perceived likelihood of matching. A small number of unmatched U.S. seniors would have matched if they had ranked programs that ranked them. U.S. seniors' Match outcomes may be affected by applicant characteristics that negatively influence their selection for interviews, and their difficulties may be exacerbated by disadvantageous ranking behaviors.

  6. Cosmic strings

    International Nuclear Information System (INIS)

    Bennett, D.P.

    1988-07-01

    Cosmic strings are linear topological defects that are predicted by some grand unified theories to form during a spontaneous symmetry breaking phase transition in the early universe. They are the basis for the only theories of galaxy formation aside from quantum fluctuations from inflation that are based on fundamental physics. In contrast to inflation, they can also be observed directly through gravitational lensing and their characteristic microwave background anistropy. It has recently been discovered by F. Bouchet and myself that details of cosmic string evolution are very different from the so-called ''standard model'' that has been assumed in most of the string induced galaxy formation calculations. Therefore, the details of galaxy formation in the cosmic string models are currently very uncertain. 29 refs., 9 figs

  7. Why string theory?

    CERN Document Server

    Conlon, Joseph

    2016-01-01

    Is string theory a fraud or one of the great scientific advances? Why do so many physicists work on string theory if it cannot be tested? This book provides insight into why such a theory, with little direct experimental support, plays such a prominent role in theoretical physics. The book gives a modern and accurate account of string theory and science, explaining what string theory is, why it is regarded as so promising, and why it is hard to test.

  8. D-branes in little string theory

    International Nuclear Information System (INIS)

    Israel, Dan; Pakman, Ari; Troost, Jan

    2005-01-01

    We analyze in detail the D-branes in the near-horizon limit of NS5-branes on a circle, the holographic dual of little string theory in a double scaling limit. We emphasize their geometry in the background of the NS5-branes and show the relation with D-branes in coset models. The exact one-point functions giving the coupling of the closed string states with the D-branes and the spectrum of open strings are computed. Using these results, we analyze several aspects of Hanany-Witten setups, using exact CFT analysis. In particular we identify the open string spectrum on the D-branes stretched between NS5-branes which confirms the low-energy analysis in brane constructions, and that allows to go to higher energy scales. As an application we show the emergence of the beta-function of the N=2 gauge theory on D4-branes stretching between NS5-branes from the boundary states describing the D4-branes. We also speculate on the possibility of getting a matrix model description of little string theory from the effective theory on the D1-branes. By considering D3-branes orthogonal to the NS5-branes we find a CFT incarnation of the Hanany-Witten effect of anomalous creation of D-branes. Finally we give an brief description of some non-BPS D-branes

  9. Wilson loops in 3-dimensional N = 6 supersymmetric Chern-Simons theory and their string theory duals

    International Nuclear Information System (INIS)

    Drukker, Nadav; Plefka, Jan; Young, Donovan

    2008-01-01

    We study Wilson loops in the three-dimensional N = 6 supersymmetric Chern-Simons theory recently constructed by Aharony, Bergman, Jafferis and Maldacena, that is conjectured to be dual to type IIA string theory on AdS 4 x CP 3 . We construct loop operators in the Chern-Simons theory which preserve 1/6 of the supercharges and calculate their expectation value up to 2-loop order at weak coupling. The expectation value at strong coupling is found by constructing the string theory duals of these operators. For low dimensional representations these are fundamental strings, for high dimensional representations these are D2-branes and D6-branes. In support of this identification we demonstrate that these string theory solutions match the symmetries, charges and the preserved supersymmetries of their Chern-Simons theory counterparts.

  10. Multiflavor string-net models

    Science.gov (United States)

    Lin, Chien-Hung

    2017-05-01

    We generalize the string-net construction to multiple flavors of strings, each of which is labeled by the elements of an Abelian group Gi. The same flavor of strings can branch, while different flavors of strings can cross one another and thus they form intersecting string nets. We systematically construct the exactly soluble lattice Hamiltonians and the ground-state wave functions for the intersecting string-net condensed phases. We analyze the braiding statistics of the low-energy quasiparticle excitations and find that our model can realize all the topological phases as the string-net model with group G =∏iGi . In this respect, our construction provides various ways of building lattice models which realize topological order G , corresponding to different partitions of G and thus different flavors of string nets. In fact, our construction concretely demonstrates the Künneth formula by constructing various lattice models with the same topological order. As an example, we construct the G =Z2×Z2×Z2 string-net model which realizes a non-Abelian topological phase by properly intersecting three copies of toric codes.

  11. Heterotic cosmic strings

    International Nuclear Information System (INIS)

    Becker, Katrin; Becker, Melanie; Krause, Axel

    2006-01-01

    We show that all three conditions for the cosmological relevance of heterotic cosmic strings, the right tension, stability and a production mechanism at the end of inflation, can be met in the strongly coupled M-theory regime. Whereas cosmic strings generated from weakly coupled heterotic strings have the well-known problems posed by Witten in 1985, we show that strings arising from M5-branes wrapped around 4-cycles (divisors) of a Calabi-Yau in heterotic M-theory compactifications solve these problems in an elegant fashion

  12. A novel string field theory solving string theory by liberating left and right movers

    International Nuclear Information System (INIS)

    Nielsen, Holger B.; Ninomiya, Masao

    2014-01-01

    We put forward ideas to a novel string field theory based on making some “objects” that essentially describe “liberated” left- and right- mover fields X L μ (τ+σ) and X R μ (τ−σ) on the string. Our novel string field theory is completely definitely different from any other string theory in as far as a “null set” of information in the string field theory Fock space has been removed relatively, to the usual string field theories. So our theory is definitely new. The main progress is that we manage to make our novel string field theory provide the correct mass square spectrum for the string. We finally suggest how to obtain the Veneziano amplitude in our model

  13. String-theoretic deformation of the Parke-Taylor factor

    Science.gov (United States)

    Mizera, Sebastian; Zhang, Guojun

    2017-09-01

    Scattering amplitudes in a range of quantum field theories can be computed using the Cachazo-He-Yuan (CHY) formalism. In theories with color ordering, the key ingredient is the so-called Parke-Taylor factor. In this paper we give a fully SL (2 ,C )-covariant definition and study the properties of a new integrand called the "string Parke-Taylor" factor. It has an α' expansion whose leading coefficient is the field-theoretic Parke-Taylor factor. Its main application is that it leads to a CHY formulation of open string tree-level amplitudes. In fact, the definition of the string Parke-Taylor factor was motivated by trying to extend the compact formula for the first α' correction found by He and Zhang, while the main ingredient in its definition is a determinant of a matrix introduced in the context of string theory by Stieberger and Taylor.

  14. Cosmic strings and galaxy formation: Current status

    International Nuclear Information System (INIS)

    Stebbins, A.

    1987-04-01

    Successes and remaining problems with cosmic string theories of galaxy formation are outlined. Successes of the theory include predictions for the correct amplitude of initial inhomogeneities leading to galaxy formation, the distribution of observed inhomogeneities, the observed correlation function of clusters, and the density profiles of dark matter halos. Potentially serious problems which have been raised are the biased galaxy production (why do galaxies occur in clusters?), the core radius problem (density profiles of galactic halos do not match predictions), the maximal rotation velocity problem (why is there a sharp cutoff in observed rotational velocity of galaxies?), the small galaxy problem (why are all the galaxies relatively small structures?), the angular momentum problem (where do baryons acquire their angular momentum in order to form spirals), and the large-scale structure problem (why do most galaxies appear to lie on surfaces surrounding voids?). Possible approaches to each of these problems are suggested and the future of cosmic string theory is discussed. 25 refs

  15. Instanton strings and hyper-Kaehler geometry

    International Nuclear Information System (INIS)

    Dijkgraaf, Robbert

    1999-01-01

    We discuss two-dimensional sigma models on moduli spaces of instantons on K3 surfaces. These N = (4, 4) superconformal field theories describe the near-horizon dynamics of the D1-D5-brane system and are dual to string theory on AdS 3 . We derive a precise map relating the moduli of the K3 type 1113 string compactification to the moduli of these conformal field theories and the corresponding classical hyper-Kahler geometry. We conclude that in the absence of background gauge fields, the metric on the instanton moduli spaces degenerates exactly to the orbifold symmetric product of K3. Turning on a self-dual NS B-field deforms this symmetric product to a manifold that is diffeomorphic to the Hilbert scheme. We also comment on the mathematical applications of string duality to the global issues of deformations of hyper-Kaehler manifolds

  16. Exceptional groups from open strings

    International Nuclear Information System (INIS)

    Gaberdiel, M.R.; Zwiebach, B.

    1998-01-01

    We consider type IIB theory compactified on a two-sphere in the presence of mutually non-local 7-branes. The BPS states associated with the gauge vectors of exceptional groups are seen to arise from open strings connecting the 7-branes, and multi-pronged open strings capable of ending on more than two 7-branes. These multi-pronged strings are built from open string junctions that arise naturally when strings cross 7-branes. The different string configurations can be multiplied as traditional open strings, and are shown to generate the structure of exceptional groups. (orig.)

  17. Evidence for string substructure

    International Nuclear Information System (INIS)

    Bergman, O.

    1996-06-01

    The author argues that the behavior of string theory at high temperature and high longitudinal boosts, combined with the emergence of p-branes as necessary ingredients in various string dualities, point to a possible reformulation of strings, as well as p-branes, as composites of bits. He reviews the string-bit models, and suggests generalizations to incorporate p-branes

  18. Radiation-resistant stringed inverters on the basis of thread-like monocrystals Ge1-xSix

    International Nuclear Information System (INIS)

    Abbasov, S.M.; Agaverdieva, G.T.; Kerimova, T.I.; Mikailova, A.D.; Baytsar, R.I.

    2005-01-01

    Aim of our efforts is the engineering of the sensor, matching of the advantages of different sensors and opportunities of microelectronic technology, and also device of oscillated strings and diaphragm of the strain. Principles of the sensor of strain with oscillated strings get involved in the future for overcoming difficulties, specified by the construction of these sensors. Examples of the using of such kind of classes of reformers in concrete constructions of devices for measuring of different physical parameters were reduced

  19. Ambiguity in determining the effective action for string-corrected Einstein gravity

    International Nuclear Information System (INIS)

    Hochberg, D.; Shimada, T.

    1986-11-01

    The authors attempt to clarify some issues dealing with the determination of some of the coefficients appearing in the low-energy gravitational effective action for closed strings. In particular, the coefficients of the Rsub(μv) 2 and R 2 terms of the quadratic curvature corrections to the Einstein-Hilbert action are shown not to be determined by matching the on-shell S-matrices of the effective theory with that of the string theories. The mechanism responsible for the ambiguity of these coefficients is revealed as a cancellation among the contact, exchange and point-insertion terms contributing to the tree S-matrix of the effective local theory. Although ghost poles will appear in the graviton propagator for general quadratic curvature corrections, the effective theory remains unitary. The manifest absence of ghosts is achieved by choosing the Gauss-Bonnet combination of quadratic curvature terms, but the string does not single out this combination over any other. (author)

  20. Precise Analysis of String Expressions

    DEFF Research Database (Denmark)

    Christensen, Aske Simon; Møller, Anders; Schwartzbach, Michael Ignatieff

    2003-01-01

    We perform static analysis of Java programs to answer a simple question: which values may occur as results of string expressions? The answers are summarized for each expression by a regular language that is guaranteed to contain all possible values. We present several applications of this analysis...... are automatically produced. We present extensive benchmarks demonstrating that the analysis is efficient and produces results of useful precision......., including statically checking the syntax of dynamically generated expressions, such as SQL queries. Our analysis constructs flow graphs from class files and generates a context-free grammar with a nonterminal for each string expression. The language of this grammar is then widened into a regular language...

  1. Strings, texture, and inflation

    International Nuclear Information System (INIS)

    Hodges, H.M.; Primack, J.R.

    1991-01-01

    We examine mechanisms, several of which are proposed here, to generate structure formation, or to just add large-scale features, through either gauged or global cosmic strings or global texture, within the framework of inflation. We first explore the possibility that strings or texture form if there is no coupling between the topological theory and the inflaton or spacetime curvature, via (1) quantum creation, and (2) a sufficiently high reheat temperature. In addition, we examine the prospects for the inflaton field itself to generate strings or texture. Then, models with the string/texture field coupled to the curvature, and an equivalent model with coupling to the inflaton field, are considered in detail. The requirement that inflationary density fluctuations are not so large as to conflict with observations leads to a number of constraints on model parameters. We find that strings of relevance for structure formation can form in the absence of coupling to the inflaton or curvature through the process of quantum creation, but only if the strings are strongly type I, or if they are global strings. If formed after reheating, naturalness suggests that gauged cosmic strings correspond to a type-I superconductor. Similarly, gauged strings formed during inflation via conformal coupling ξ=1/6 to the spacetime curvature (in a model suggested by Yokoyama in order to evade the millisecond pulsar constraint on cosmic strings) are expected to be strongly type I

  2. String Theory - The Physics of String-Bending and Other Electric Guitar Techniques

    Science.gov (United States)

    Grimes, David Robert

    2014-01-01

    Electric guitar playing is ubiquitous in practically all modern music genres. In the hands of an experienced player, electric guitars can sound as expressive and distinct as a human voice. Unlike other more quantised instruments where pitch is a discrete function, guitarists can incorporate micro-tonality and, as a result, vibrato and sting-bending are idiosyncratic hallmarks of a player. Similarly, a wide variety of techniques unique to the electric guitar have emerged. While the mechano-acoustics of stringed instruments and vibrating strings are well studied, there has been comparatively little work dedicated to the underlying physics of unique electric guitar techniques and strings, nor the mechanical factors influencing vibrato, string-bending, fretting force and whammy-bar dynamics. In this work, models for these processes are derived and the implications for guitar and string design discussed. The string-bending model is experimentally validated using a variety of strings and vibrato dynamics are simulated. The implications of these findings on the configuration and design of guitars is also discussed. PMID:25054880

  3. String theory--the physics of string-bending and other electric guitar techniques.

    Directory of Open Access Journals (Sweden)

    David Robert Grimes

    Full Text Available Electric guitar playing is ubiquitous in practically all modern music genres. In the hands of an experienced player, electric guitars can sound as expressive and distinct as a human voice. Unlike other more quantised instruments where pitch is a discrete function, guitarists can incorporate micro-tonality and, as a result, vibrato and sting-bending are idiosyncratic hallmarks of a player. Similarly, a wide variety of techniques unique to the electric guitar have emerged. While the mechano-acoustics of stringed instruments and vibrating strings are well studied, there has been comparatively little work dedicated to the underlying physics of unique electric guitar techniques and strings, nor the mechanical factors influencing vibrato, string-bending, fretting force and whammy-bar dynamics. In this work, models for these processes are derived and the implications for guitar and string design discussed. The string-bending model is experimentally validated using a variety of strings and vibrato dynamics are simulated. The implications of these findings on the configuration and design of guitars is also discussed.

  4. String theory--the physics of string-bending and other electric guitar techniques.

    Science.gov (United States)

    Grimes, David Robert

    2014-01-01

    Electric guitar playing is ubiquitous in practically all modern music genres. In the hands of an experienced player, electric guitars can sound as expressive and distinct as a human voice. Unlike other more quantised instruments where pitch is a discrete function, guitarists can incorporate micro-tonality and, as a result, vibrato and sting-bending are idiosyncratic hallmarks of a player. Similarly, a wide variety of techniques unique to the electric guitar have emerged. While the mechano-acoustics of stringed instruments and vibrating strings are well studied, there has been comparatively little work dedicated to the underlying physics of unique electric guitar techniques and strings, nor the mechanical factors influencing vibrato, string-bending, fretting force and whammy-bar dynamics. In this work, models for these processes are derived and the implications for guitar and string design discussed. The string-bending model is experimentally validated using a variety of strings and vibrato dynamics are simulated. The implications of these findings on the configuration and design of guitars is also discussed.

  5. Dynamical systems with constraints: applications to the non-holonomical systems and the string theory

    International Nuclear Information System (INIS)

    Negri, L.J.

    1982-01-01

    A tecnique permiting the construction of a lagrangian function for nao-holononic systems is established. The classical formalism of the relativistic strings is discussed in the point of view of the Dirac theory for singular systems and in the context of a problem of two-dimensional surface immersion in space-time. It is shown how to solve the problem corresponding to the immersion in the case of free-finite and open strings by the specification of a non-conventional gauge. The relation between the string theory and Maxwell fields of place 2 is analyzed and the properties of string 'current density' to obtain new information about the model is explored. (L.C.) [pt

  6. New expressions for string loop amplitudes leading to an ultra-simple conception of string dynamics

    International Nuclear Information System (INIS)

    Chan Hongmo; Tsou Sheungtsun; Bordes, J.; Nellen, L.

    1990-11-01

    New expressions are derived for string loop amplitudes as overlap integrals of string wave functionals. They are shown to take the form of exchange terms coming from the Bose-Einstein symmetrisation between string segments. One is thus led to the ultra-simple conception that string theory is basically free, and that 'string interactions' are due merely to the fact that strings are composite objects with Bose-Einstein segments as constituents. (author)

  7. Little string theory from double-scaling limits of field theories

    International Nuclear Information System (INIS)

    Ling, Henry; Shieh, H.-H.; Anders, Greg van

    2007-01-01

    We show that little string theory on S 5 can be obtained as double-scaling limits of the maximally supersymmetric Yang-Mills theories on R x S 2 and R x S 3 /Z k . By matching the gauge theory parameters with those in the dual supergravity solutions found by Lin and Maldacena, we determine the limits in the gauge theories that correspond to decoupling of NS5-brane degrees of freedom. We find that for the theory on R x S 2 , the 't Hooft coupling must be scaled like ln 3 N, and on R x S 3 /Z k , like ln 2 N. Accordingly, taking these limits in these field theories gives Lagrangian definitions of little string theory on S 5

  8. Stretching cosmic strings

    International Nuclear Information System (INIS)

    Turok, N.; Bhattacharjee, P.

    1984-01-01

    The evolution of a network of strings produced at a grand-unification phase transition in an expanding universe is discussed, with particular reference to the processes of energy exchange between the strings and the rest of the universe. This is supported by numerical calculations simulating the behavior of strings in an expanding universe. It is found that in order that the energy density of the strings does not come to dominate the total energy density there must be an efficient mechanism for energy loss: the only plausible one being the production of closed loops and their subsequent decay via gravitational radiation

  9. M-strings, Elliptic Genera and N=4 String Amplitudes

    CERN Document Server

    Hohenegger, Stefan

    2014-01-01

    We study mass-deformed N=2 gauge theories from various points of view. Their partition functions can be computed via three dual approaches: firstly, (p,q)-brane webs in type II string theory using Nekrasov's instanton calculus, secondly, the (refined) topological string using the topological vertex formalism and thirdly, M theory via the elliptic genus of certain M-strings configurations. We argue for a large class of theories that these approaches yield the same gauge theory partition function which we study in detail. To make their modular properties more tangible, we consider a fourth approach by connecting the partition function to the equivariant elliptic genus of R^4 through a (singular) theta-transform. This form appears naturally as a specific class of one-loop scattering amplitudes in type II string theory on T^2, which we calculate explicitly.

  10. String Math 2017

    CERN Document Server

    The series of String-Math conferences has developed into a central event on the interface between mathematics and physics related to string theory, quantum field theory and neighboring subjects. The conference will take place from July 24-28 in the main building of Hamburg university. The String-Math conference is organised by the University of Hamburg jointly with DESY Hamburg.

  11. ERA: Efficient serial and parallel suffix tree construction for very long strings

    KAUST Repository

    Mansour, Essam; Allam, Amin; Skiadopoulos, Spiros G.; Kalnis, Panos

    2011-01-01

    The suffix tree is a data structure for indexing strings. It is used in a variety of applications such as bioinformatics, time series analysis, clustering, text editing and data compression. However, when the string and the resulting suffix tree

  12. Neutrino Majorana masses from string theory instanton effects

    International Nuclear Information System (INIS)

    Ibanez, Luis E.; Uranga, Angel M.

    2007-01-01

    Finding a plausible origin for right-handed neutrino Majorana masses in semirealistic compactifications of string theory remains one of the most difficult problems in string phenomenology. We argue that right-handed neutrino Majorana masses are induced by non-perturbative instanton effects in certain classes of string compactifications in which the U(1) B-L gauge boson has a Stueckelberg mass. The induced operators are of the form e -U ν R ν R where U is a closed string modulus whose imaginary part transforms appropriately under B-L. This mass term may be quite large since this is not a gauge instanton and Re U is not directly related to SM gauge couplings. Thus the size of the induced right-handed neutrino masses could be a few orders of magnitude below the string scale, as phenomenologically required. It is also argued that this origin for neutrino masses would predict the existence of R-parity in SUSY versions of the SM. Finally we comment on other phenomenological applications of similar instanton effects, like the generation of a μ-term, or of Yukawa couplings forbidden in perturbation theory

  13. Bohr's Electron was Problematic for Einstein: String Theory Solved the Problem

    Science.gov (United States)

    Webb, William

    2013-04-01

    Neils Bohr's 1913 model of the hydrogen electron was problematic for Albert Einstein. Bohr's electron rotates with positive kinetic energies +K but has addition negative potential energies - 2K. The total net energy is thus always negative with value - K. Einstein's special relativity requires energies to be positive. There's a Bohr negative energy conflict with Einstein's positive energy requirement. The two men debated the problem. Both would have preferred a different electron model having only positive energies. Bohr and Einstein couldn't find such a model. But Murray Gell-Mann did! In the 1960's, Gell-Mann introduced his loop-shaped string-like electron. Now, analysis with string theory shows that the hydrogen electron is a loop of string-like material with a length equal to the circumference of the circular orbit it occupies. It rotates like a lariat around its centered proton. This loop-shape has no negative potential energies: only positive +K relativistic kinetic energies. Waves induced on loop-shaped electrons propagate their energy at a speed matching the tangential speed of rotation. With matching wave speed and only positive kinetic energies, this loop-shaped electron model is uniquely suited to be governed by the Einstein relativistic equation for total mass-energy. Its calculated photon emissions are all in excellent agreement with experimental data and, of course, in agreement with those -K calculations by Neils Bohr 100 years ago. Problem solved!

  14. Noncritical String Liouville Theory and Geometric Bootstrap Hypothesis

    Science.gov (United States)

    Hadasz, Leszek; Jaskólski, Zbigniew

    The applications of the existing Liouville theories for the description of the longitudinal dynamics of noncritical Nambu-Goto string are analyzed. We show that the recently developed DOZZ solution to the Liouville theory leads to the cut singularities in tree string amplitudes. We propose a new version of the Polyakov geometric approach to Liouville theory and formulate its basic consistency condition — the geometric bootstrap equation. Also in this approach the tree amplitudes develop cut singularities.

  15. Querying and Mining Strings Made Easy

    KAUST Repository

    Sahli, Majed; Mansour, Essam; Kalnis, Panos

    2017-01-01

    that allows StarQL implementations to handle large sets of strings and utilize large computing infrastructures. Our evaluation shows that StarQL is able to express workloads of application-specific tools, such as BLAST and KAT in bioinformatics, and to mine

  16. FPGA-accelerated algorithm for the regular expression matching system

    Science.gov (United States)

    Russek, P.; Wiatr, K.

    2015-01-01

    This article describes an algorithm to support a regular expressions matching system. The goal was to achieve an attractive performance system with low energy consumption. The basic idea of the algorithm comes from a concept of the Bloom filter. It starts from the extraction of static sub-strings for strings of regular expressions. The algorithm is devised to gain from its decomposition into parts which are intended to be executed by custom hardware and the central processing unit (CPU). The pipelined custom processor architecture is proposed and a software algorithm explained accordingly. The software part of the algorithm was coded in C and runs on a processor from the ARM family. The hardware architecture was described in VHDL and implemented in field programmable gate array (FPGA). The performance results and required resources of the above experiments are given. An example of target application for the presented solution is computer and network security systems. The idea was tested on nearly 100,000 body-based viruses from the ClamAV virus database. The solution is intended for the emerging technology of clusters of low-energy computing nodes.

  17. SAGE: String-overlap Assembly of GEnomes.

    Science.gov (United States)

    Ilie, Lucian; Haider, Bahlul; Molnar, Michael; Solis-Oba, Roberto

    2014-09-15

    De novo genome assembly of next-generation sequencing data is one of the most important current problems in bioinformatics, essential in many biological applications. In spite of significant amount of work in this area, better solutions are still very much needed. We present a new program, SAGE, for de novo genome assembly. As opposed to most assemblers, which are de Bruijn graph based, SAGE uses the string-overlap graph. SAGE builds upon great existing work on string-overlap graph and maximum likelihood assembly, bringing an important number of new ideas, such as the efficient computation of the transitive reduction of the string overlap graph, the use of (generalized) edge multiplicity statistics for more accurate estimation of read copy counts, and the improved use of mate pairs and min-cost flow for supporting edge merging. The assemblies produced by SAGE for several short and medium-size genomes compared favourably with those of existing leading assemblers. SAGE benefits from innovations in almost every aspect of the assembly process: error correction of input reads, string-overlap graph construction, read copy counts estimation, overlap graph analysis and reduction, contig extraction, and scaffolding. We hope that these new ideas will help advance the current state-of-the-art in an essential area of research in genomics.

  18. Gravitational effects of global strings

    International Nuclear Information System (INIS)

    Aryal, M.; Everett, A.E.

    1986-01-01

    We have obtained the gravitational field, in the weak-field approximation, of cosmic strings formed in a phase transition in which a global symmetry is broken (global strings). The effect of this field on light rays passing a global string is found, and the resulting formation of double images and production of discontinuities in the microwave background temperature compared with the corresponding results for gauge strings. There are some differences in the case of global strings, reflecting the fact that the space surrounding such strings is not purely conical. However, the differences between gauge and global strings with masses suitable to explain galaxy formation are small, and the task of distinguishing them observationally appears difficult at best

  19. Non-Perturbative Formulation of Time-Dependent String Solutions

    CERN Document Server

    Alexandre, J; Mavromatos, Nikolaos E; Alexandre, Jean; Ellis, John; Mavromatos, Nikolaos E.

    2006-01-01

    We formulate here a new world-sheet renormalization-group technique for the bosonic string, which is non-perturbative in the Regge slope alpha' and based on a functional method for controlling the quantum fluctuations, whose magnitudes are scaled by the value of alpha'. Using this technique we exhibit, in addition to the well-known linear-dilaton cosmology, a new, non-perturbative time-dependent background solution. Using the reparametrization invariance of the string S-matrix, we demonstrate that this solution is conformally invariant to alpha', and we give a heuristic inductive argument that conformal invariance can be maintained to all orders in alpha'. This new time-dependent string solution may be applicable to primordial cosmology or to the exit from linear-dilaton cosmology at large times.

  20. Stability and characteristic propagation speeds in superconducting cosmic and other string models

    International Nuclear Information System (INIS)

    Carter, B.

    1989-01-01

    A bicharacteristic version is obtained for the differential equations of motion in a recently introduced formalism for the (fully covariant) treatment of a broad range of macroscopic 'thin' string models, with applicability extending from ordinary (violin type) elastic strings to superconducting cosmic strings. In any locally stable state there are two bicharacteristic propagation speeds corresponding to group velocities of transverse (extrinsic) and longitudinal (intrinsic) perturbations. The local stability requirement excludes states in which the string tension T is negative or in which its derivative with respect to the energy density (per unit length) U is positive. (orig.)

  1. International conference on string theory

    CERN Document Server

    2017-01-01

    The Strings 2017 conference is part of the "Strings" series of annual conferences, that bring the entire string theory community together. It will include reviews of major developments in the field, and specialized talks on specific topics. There will also be several public lectures given by conference participants, a pre-Strings school at the Technion, and a post-Strings workshop at the Weizmann Institute.

  2. Cosmic strings and inflation

    International Nuclear Information System (INIS)

    Vishniac, E.T.

    1987-01-01

    We examine the compatibility of inflation with the cosmic string theory for galaxy formation. There is a general conflict between having sufficient string tension to effect galaxy formation, and reheating after inflation to a high enough temperature that strings may form in a thermal phase transition. To escape this conflict, we propose a class of models where the inflation is coupled to the string-producing field. The strings are formed late in inflation as the inflaton rolls towards its zero-temperature value. A large subset of these models have a novel large-scale distribution of galaxies that is fractal, displays biasing without dynamics or feedback mechanisms, and contains voids. (orig.)

  3. String-Math 2015

    CERN Document Server

    2015-01-01

    Welcome to String-Math 2015 at Sanya. The conference will be opened in December 31, 2015- January 4, 2016. String theory plays a central role in theoretical physics as a candidate for the quantum theory unifying gravity with other interactions. It has profound connections with broad branches of modern mathematics ever since the birth. In the last decades, the prosperous interaction, built upon the joint efforts from both mathematicians and physicists, has given rise to marvelous deep results in supersymmetric gauge theory, topological string, M-theory and duality on the physics side as well as in algebraic geometry, differential geometry, algebraic topology, representation theory and number theory on the mathematics side. The interplay is two-fold. The mathematics has provided powerful tools to fulfill the physical interconnection of ideas and clarify physical structures to understand the nature of string theory. On the other hand, ideas from string theory and quantum field theory have been a source of sign...

  4. Field redefinitions and Chern-Simons terms in the heterotic string

    International Nuclear Information System (INIS)

    Bern, Z.; Shimada, T.

    1987-07-01

    Field redefinitions in the low energy effective action of the heterotic string are discussed. A field redefinition is constructed which generates the local counterterm that transforms the Lorentz into the gravitational form of the anomaly. We also discuss the field redefinition which torsionizes the Lorentz Chern-Simons term and its relation to an amplitude matching study of the compatibility of torsion with the Gauss-Bonnet combination. (orig.)

  5. Nambu-Goto string with the Gauss-Bonnet term and point-like masses at the ends

    Science.gov (United States)

    Hadasz, Leszek; Róg, Tomasz

    1996-02-01

    We investigate classical dynamics of the Nambu-Goto string with Gauss-Bonnet term in the action and point-like masses at the ends in the context of effective QCD string. The configuration of rigidly rotating string is studied and its application to phenomenological description of meson spectroscopy is discussed.

  6. Deterministic indexing for packed strings

    DEFF Research Database (Denmark)

    Bille, Philip; Gørtz, Inge Li; Skjoldjensen, Frederik Rye

    2017-01-01

    Given a string S of length n, the classic string indexing problem is to preprocess S into a compact data structure that supports efficient subsequent pattern queries. In the deterministic variant the goal is to solve the string indexing problem without any randomization (at preprocessing time...... or query time). In the packed variant the strings are stored with several character in a single word, giving us the opportunity to read multiple characters simultaneously. Our main result is a new string index in the deterministic and packed setting. Given a packed string S of length n over an alphabet σ...

  7. Interaction of solitons with a string of coupled quantum dots

    Energy Technology Data Exchange (ETDEWEB)

    Kumar, Vijendra, E-mail: vsmedphysics@gmail.com; Swami, O. P., E-mail: omg1789@gmail.com; Nagar, A. K., E-mail: ajaya.nagar@gmail.com [Department of Physics, Govt. Dungar College, Bikaner, Rajasthan 334001 (India); Taneja, S., E-mail: sachintaneja9@gmail.com [Department of Radiotherapy, CHAF Bangalore, Karnataka 560007 (India)

    2016-05-06

    In this paper, we develop a theory for discrete solitons interaction with a string of coupled quantum dots in view of the local field effects. Discrete nonlinear Schrodinger (DNLS) equations are used to describe the dynamics of the string. Numerical calculations are carried out and results are analyzed with the help of matlab software. With the help of numerical solutions we demonstrate that in the quantum dots string, Rabi oscillations (RO) are self trapped into stable bright Rabi solitons. The Rabi oscillations in different types of nanostructures have potential applications to the elements of quantum logic and quantum memory.

  8. Indonesian name matching using machine learning supervised approach

    Science.gov (United States)

    Alifikri, Mohamad; Arif Bijaksana, Moch.

    2018-03-01

    Most existing name matching methods are developed for English language and so they cover the characteristics of this language. Up to this moment, there is no specific one has been designed and implemented for Indonesian names. The purpose of this thesis is to develop Indonesian name matching dataset as a contribution to academic research and to propose suitable feature set by utilizing combination of context of name strings and its permute-winkler score. Machine learning classification algorithms is taken as the method for performing name matching. Based on the experiments, by using tuned Random Forest algorithm and proposed features, there is an improvement of matching performance by approximately 1.7% and it is able to reduce until 70% misclassification result of the state of the arts methods. This improving performance makes the matching system more effective and reduces the risk of misclassified matches.

  9. Topics in string theory

    International Nuclear Information System (INIS)

    Neveu, A.

    1986-01-01

    There exist several string models. In the first lecture, the simplest one, the open bosonic string, which turns out to live most naturally in 26 dimensions will be described in some detail. In the second lecture, the closed bosonic strings, and the open and closed 10-dimensional strings (superstrings) are reviewed. In the third lecture, various compactification schemes which have been proposed to deal with the extra space dimensions, from 4 to 10 or 26 are dealt with; in particular, the Frenkel-Kac construction which builds non-Abelian internal symmetry groups out of the compactified dimensions, and the resulting heterotic string are described. Finally, in the fourth lecture, the important problem of the second quantization of string theories, and of the underlying gauge invariance which is responsible for the possibility of dealing, in a consistent fashion, with interacting high-spin states without negative metric is addressed. 41 references, 8 figures

  10. Towards a Database System for Large-scale Analytics on Strings

    KAUST Repository

    Sahli, Majed A.

    2015-07-23

    Recent technological advances are causing an explosion in the production of sequential data. Biological sequences, web logs and time series are represented as strings. Currently, strings are stored, managed and queried in an ad-hoc fashion because they lack a standardized data model and query language. String queries are computationally demanding, especially when strings are long and numerous. Existing approaches cannot handle the growing number of strings produced by environmental, healthcare, bioinformatic, and space applications. There is a trade- off between performing analytics efficiently and scaling to thousands of cores to finish in reasonable times. In this thesis, we introduce a data model that unifies the input and output representations of core string operations. We define a declarative query language for strings where operators can be pipelined to form complex queries. A rich set of core string operators is described to support string analytics. We then demonstrate a database system for string analytics based on our model and query language. In particular, we propose the use of a novel data structure augmented by efficient parallel computation to strike a balance between preprocessing overheads and query execution times. Next, we delve into repeated motifs extraction as a core string operation for large-scale string analytics. Motifs are frequent patterns used, for example, to identify biological functionality, periodic trends, or malicious activities. Statistical approaches are fast but inexact while combinatorial methods are sound but slow. We introduce ACME, a combinatorial repeated motifs extractor. We study the spatial and temporal locality of motif extraction and devise a cache-aware search space traversal technique. ACME is the only method that scales to gigabyte- long strings, handles large alphabets, and supports interesting motif types with minimal overhead. While ACME is cache-efficient, it is limited by being serial. We devise a lightweight

  11. Oriented open-closed string theory revisited

    International Nuclear Information System (INIS)

    Zwiebach, B.

    1998-01-01

    String theory on D-brane backgrounds is open-closed string theory. Given the relevance of this fact, we give details and elaborate upon our earlier construction of oriented open-closed string field theory. In order to incorporate explicitly closed strings, the classical sector of this theory is open strings with a homotopy associative A ∞ algebraic structure. We build a suitable Batalin-Vilkovisky algebra on moduli spaces of bordered Ricmann surfaces, the construction of which involves a few subtleties arising from the open string punctures and cyclicity conditions. All vertices coupling open and closed strings through disks are described explicitly. Subalgebras of the algebra of surfaces with boundaries are used to discuss symmetries of classical open string theory induced by the closed string sector, and to write classical open string field theory on general closed string backgrounds. We give a preliminary analysis of the ghost-dilaton theorem. copyright 1998 Academic Press, Inc

  12. Multiquark strings

    International Nuclear Information System (INIS)

    Wang, F.; Chun, W.

    1985-01-01

    The use of basis states described as hadronic (or hadron-hadron) or hidden-colour (or colour-colour) for a system of quarks does not necessarily imply that connected exotic multiquark hadrons do exist. Antisymmetrization of quark wave functions tends to make these descriptions ill defined. It appears necessary to have stable collective structures called strings or bags to provide the physical connections required by quark confinement. The masses of multiquark hadrons can then be estimated by using semplified string, bag and NR potential models. The results turn out to be qualitatively similar in all these models. The stability problem for multiquark strings is briefly discussed

  13. Open string model building

    International Nuclear Information System (INIS)

    Ishibashi, Nobuyuki; Onogi, Tetsuya

    1989-01-01

    Consistency conditions of open string theories, which can be a powerful tool in open string model building, are proposed. By making use of these conditions and assuming a simple prescription for the Chan-Paton factors, open string theories in several backgrounds are studied. We show that 1. there exist a large number of consistent bosonic open string theories on Z 2 orbifolds, 2. SO(32) type I superstring is the unique consistent model among fermionic string theories on the ten-dimensional flat Minkowski space, and 3. with our prescription for the Chan-Paton factors, there exist no consistent open superstring theories on (six-dimensional Minkowski space-time) x (Z 2 orbifold). (orig.)

  14. Cosmic strings and galaxy formation

    International Nuclear Information System (INIS)

    Bertschinger, E.

    1989-01-01

    Cosmic strings have become increasingly popular candidates as seeds for the formation of structure in the universe. This scenario, remains a serious cosmogonical model despite close scrutiny. In constrast, magnetic monopoles and domain walls - relic topological defects as are cosmic strings - are disastrous for cosmology if they are left over from the early universe. The production of heavy cosmic strings is speculative, as it depends on the details of ultrahigh energy physics. Fortunately, speculation about cosmic strings is not entirely idle because, if they exist and are heavy enough to seed galaxy formation, cosmic strings can be detected astronomically. Failure to detect cosmic strings would impose some constraints on grand unified theories (GUTs); their discovery would have exciting consequences for high energy physics and cosmology. This article reviews the basic physics of nonsuperconducting cosmic strings, highlighting the field theory aspects, and provides a progress report on calculations of structure formation with cosmic strings

  15. String-localized quantum fields

    International Nuclear Information System (INIS)

    Mund, Jens; Santos, Jose Amancio dos; Silva, Cristhiano Duarte; Oliveira, Erichardson de

    2009-01-01

    Full text. The principles of physics admit (unobservable) quantum fields which are localized not on points, but on strings in the sense of Mandelstam: a string emanates from a point in Minkowski space and extends to infinity in some space-like direction. This type of localization might permit the construction of new models, for various reasons: (a) in general, weaker localization implies better UV behaviour. Therefore, the class of renormalizable interactions in the string-localized has a chance to be larger than in the point-localized case; (b) for certain particle types, there are no point-localized (free) quantum fields - for example Anyons in d = 2 + 1, and Wigner's massless 'infinite spin' particles. For the latter, free string-localized quantum fields have been constructed; (c) in contrast to the point-localized case, string-localization admits covariant vector/tensor potentials for fotons and gravitons in a Hilbert space representation with positive energy. We shall present free string-localized quantum fields for various particle types, and some ideas about the perturbative construction of interacting string-localized fields. A central point will be an analogue of gauge theories, completely within a Hilbert space and without ghosts, trading gauge dependence with dependence on the direction of the localization string. In order to discuss renormalizability (item (a)), methods from microlocal analysis (wave front set and scaling degree) are needed. (author)

  16. Comparative Performance Analysis of Different Fingerprint Biometric Scanners for Patient Matching.

    Science.gov (United States)

    Kasiiti, Noah; Wawira, Judy; Purkayastha, Saptarshi; Were, Martin C

    2017-01-01

    Unique patient identification within health services is an operational challenge in healthcare settings. Use of key identifiers, such as patient names, hospital identification numbers, national ID, and birth date are often inadequate for ensuring unique patient identification. In addition approximate string comparator algorithms, such as distance-based algorithms, have proven suboptimal for improving patient matching, especially in low-resource settings. Biometric approaches may improve unique patient identification. However, before implementing the technology in a given setting, such as health care, the right scanners should be rigorously tested to identify an optimal package for the implementation. This study aimed to investigate the effects of factors such as resolution, template size, and scan capture area on the matching performance of different fingerprint scanners for use within health care settings. Performance analysis of eight different scanners was tested using the demo application distributed as part of the Neurotech Verifinger SDK 6.0.

  17. Device for balancing parallel strings

    Science.gov (United States)

    Mashikian, Matthew S.

    1985-01-01

    A battery plant is described which features magnetic circuit means in association with each of the battery strings in the battery plant for balancing the electrical current flow through the battery strings by equalizing the voltage across each of the battery strings. Each of the magnetic circuit means generally comprises means for sensing the electrical current flow through one of the battery strings, and a saturable reactor having a main winding connected electrically in series with the battery string, a bias winding connected to a source of alternating current and a control winding connected to a variable source of direct current controlled by the sensing means. Each of the battery strings is formed by a plurality of batteries connected electrically in series, and these battery strings are connected electrically in parallel across common bus conductors.

  18. Strings in the Sun?

    International Nuclear Information System (INIS)

    Chudnovsky, E.; Vilenkin, A.

    1988-01-01

    If light superconducting strings were formed in the early Universe, then it is very likely that now they exist in abundance in the interstellar plasma and in stars. The dynamics of such strings can be dominated by friction, so that they are ''frozen'' into the plasma. Turbulence of the plasma twists and stretches the strings, forming a stochastic string network. Such networks must generate particles and magnetic fields, and may play an important role in the physics of stars and of the Galaxy

  19. Thermodynamics of quantum strings

    CERN Document Server

    Morgan, M J

    1994-01-01

    A statistical mechanical analysis of an ideal gas of non-relativistic quantum strings is presented, in which the thermodynamic properties of the string gas are calculated from a canonical partition function. This toy model enables students to gain insight into the thermodynamics of a simple 'quantum field' theory, and provides a useful pedagogical introduction to the more complicated relativistic string theories. A review is also given of the thermodynamics of the open bosonic string gas and the type I (open) superstring gas. (author)

  20. Dynamics of Carroll strings

    Energy Technology Data Exchange (ETDEWEB)

    Cardona, Biel [Departament d’Estructura i Constituents de la Matèriaand Institut de Ciències del Cosmos (ICCUB) Facultat de Física, Universitat de Barcelona,Diagonal 647, E-08028 Barcelona, Catalonia (Spain); Gomis, Joaquim [Departament d’Estructura i Constituents de la Matèriaand Institut de Ciències del Cosmos (ICCUB) Facultat de Física, Universitat de Barcelona,Diagonal 647, E-08028 Barcelona, Catalonia (Spain); Department of Physics, Faculty of Science, Chulalongkorn University,Bangkok 10330 (Thailand); Pons, Josep M. [Departament d’Estructura i Constituents de la Matèriaand Institut de Ciències del Cosmos (ICCUB) Facultat de Física, Universitat de Barcelona,Diagonal 647, E-08028 Barcelona, Catalonia (Spain)

    2016-07-11

    We construct the canonical action of a Carroll string doing the Carroll limit of a canonical relativistic string. We also study the Killing symmetries of the Carroll string, which close under an infinite dimensional algebra. The tensionless limit and the Carroll p-brane action are also discussed.

  1. Gauge-string duality for superconformal deformations of N = 4 Super Yang-Mills theory

    International Nuclear Information System (INIS)

    Frolov, Sergey A.; Roiban, Radu; Tseytlin, Arkady A.

    2005-01-01

    We analyze in detail the relation between an exactly marginal deformation of N = 4 SYM - the Leigh-Strassler or 'β-deformation' - and its string theory dual (recently constructed in hep-th/0502086) by comparing energies of semiclassical strings to anomalous dimensions of gauge-theory operators in the two-scalar sector. We stress the existence of integrable structures on the two sides of the duality. In particular, we argue that the integrability of strings in AdS 5 x S 5 implies the integrability of the deformed world sheet theory with real deformation parameter. We compare the fast string limit of the worldsheet action in the sector with two angular momenta with the continuum limit of the coherent state action of an anisotropic XXZ spin chain describing the one-loop anomalous dimensions of the corresponding operators and find a remarkable agreement for all values of the deformation parameter. We discuss some of the properties of the Bethe Ansatz for this spin chain, solve the Bethe equations for small number of excitations and comment on higher loop properties of the dilatation operator. With the goal of going beyond the leading order in the 't Hooft expansion we derive the analog of the Bethe equations on the string-theory side, and show that they coincide with the thermodynamic limit of the Bethe equations for the spin chain. We also compute the 1/J corrections to the anomalous dimensions of operators with large R-charge (corresponding to strings with angular momentum J) and match them to the 1-loop corrections to the fast string energies. Our results suggest that the impressive agreement between the gauge theory and semiclassical strings in AdS 5 x S 5 is part of a larger picture underlying the gauge/gravity duality

  2. On Nonextensive Statistics, Chaos and Fractal Strings

    CERN Document Server

    Castro, C

    2004-01-01

    Motivated by the growing evidence of universality and chaos in QFT and string theory, we study the Tsallis non-extensive statistics ( with a non-additive $ q$-entropy ) of an ensemble of fractal strings and branes of different dimensionalities. Non-equilibrium systems with complex dynamics in stationary states may exhibit large fluctuations of intensive quantities which are described in terms of generalized statistics. Tsallis statistics is a particular representative of such class. The non-extensive entropy and probability distribution of a canonical ensemble of fractal strings and branes is studied in terms of their dimensional spectrum which leads to a natural upper cutoff in energy and establishes a direct correlation among dimensions, energy and temperature. The absolute zero temperature ( Kelvin ) corresponds to zero dimensions (energy ) and an infinite temperature corresponds to infinite dimensions. In the concluding remarks some applications of fractal statistics, quasi-particles, knot theory, quantum...

  3. Random surfaces and strings

    International Nuclear Information System (INIS)

    Ambjoern, J.

    1987-08-01

    The theory of strings is the theory of random surfaces. I review the present attempts to regularize the world sheet of the string by triangulation. The corresponding statistical theory of triangulated random surfaces has a surprising rich structure, but the connection to conventional string theory seems non-trivial. (orig.)

  4. Closed-String Tachyons and the Hagedorn Transition in AdS Space

    CERN Document Server

    Barbón, José L F

    2002-01-01

    We discuss some aspects of the behaviour of a string gas at the Hagedorn temperature from a Euclidean point of view. Using AdS space as an infrared regulator, the Hagedorn tachyon can be effectively quasi-localized and its dynamics controled by a finite energetic balance. We propose that the off-shell RG flow matches to an Euclidean AdS black hole geometry in a generalization of the string/black-hole correspondence principle. The final stage of the RG flow can be interpreted semiclassically as the growth of a cool black hole in a hotter radiation bath. The end-point of the condensation is the large Euclidan AdS black hole, and the part of spacetime behind the horizon has been removed. In the flat-space limit, holography is manifest by the system creating its own transverse screen at infinity. This leads to an argument, based on the energetics of the system, explaining why the non-supersymmetric type 0A string theory decays into the supersymmetric type IIB vacuum. We also suggest a notion of `boundary entropy'...

  5. Hagedorn Behavior of Little String Theories from string corrections to NS5-branes

    DEFF Research Database (Denmark)

    Harmark, Troels; Obers, N. A.

    2000-01-01

    We examine the Hagedorn behavior of little string theory using its conjectured duality with near-horizon NS5-branes. In particular, by studying the string-corrected NS5-brane supergravity solution, it is shown that tree-level corrections to the temperature vanish, while the leading one-loop string...... correction generates the correct temperature dependence of the entropy near the Hagedorn temperature. Finally, the Hagedorn behavior of ODp-brane theories, which are deformed versions of little string theory, is considered via their supergravity duals....

  6. Lectures on strings and dualities

    International Nuclear Information System (INIS)

    Vafa, C.

    1997-01-01

    In this set of lectures I review recent developments in string theory emphasizing their non-perturbative aspects and their recently discovered duality symmetries. The goal of the lectures is to make the recent exciting developments in string theory accessible to those with no previous background in string theory who wish to join the research effort in this area. Topics covered include a brief review of string theory, its compactifications, solitons and D-branes, black hole entropy and wed of string dualities. (author)

  7. Citation Matching in Sanskrit Corpora Using Local Alignment

    Science.gov (United States)

    Prasad, Abhinandan S.; Rao, Shrisha

    Citation matching is the problem of finding which citation occurs in a given textual corpus. Most existing citation matching work is done on scientific literature. The goal of this paper is to present methods for performing citation matching on Sanskrit texts. Exact matching and approximate matching are the two methods for performing citation matching. The exact matching method checks for exact occurrence of the citation with respect to the textual corpus. Approximate matching is a fuzzy string-matching method which computes a similarity score between an individual line of the textual corpus and the citation. The Smith-Waterman-Gotoh algorithm for local alignment, which is generally used in bioinformatics, is used here for calculating the similarity score. This similarity score is a measure of the closeness between the text and the citation. The exact- and approximate-matching methods are evaluated and compared. The methods presented can be easily applied to corpora in other Indic languages like Kannada, Tamil, etc. The approximate-matching method can in particular be used in the compilation of critical editions and plagiarism detection in a literary work.

  8. String GUTs

    International Nuclear Information System (INIS)

    Aldazabal, G.; Ibanez, L.E.; Uranga, A.M.

    1995-01-01

    Standard SUSY-GUTs such as those based on SU(5) or SO(10) lead to predictions for the values of α s and sin 2 θ W in amazing agreement with experiment. In this article we investigate how these models may be obtained from string theory, thus bringing them into the only known consistent framework for quantum gravity. String models with matter in standard GUT representations require the realization of affine Lie algebras at higher levels. We start by describing some methods to build level k=2 symmetric orbifold string models with gauge groups SU(5) or SO(10). We present several examples and identify generic features of the type of models constructed. Chiral fields appropriate to break the symmetry down to the standard model generically appear in the massless spectrum. However, unlike in standard SUSY-GUTs, they often behave as string moduli, i.e., they do not have self-couplings. We also discuss briefly the doublet-triplet Higgs splitting. We find that, in some models, built-in sliding-singlet type of couplings exist. (orig.)

  9. String theory and water waves

    International Nuclear Information System (INIS)

    Iyer, Ramakrishnan; Johnson, Clifford V; Pennington, Jeffrey S

    2011-01-01

    We uncover a remarkable role that an infinite hierarchy of nonlinear differential equations plays in organizing and connecting certain c-hat <1 string theories non-perturbatively. We are able to embed the type 0A and 0B (A, A) minimal string theories into this single framework. The string theories arise as special limits of a rich system of equations underpinned by an integrable system known as the dispersive water wave hierarchy. We observe that there are several other string-like limits of the system, and conjecture that some of them are type IIA and IIB (A, D) minimal string backgrounds. We explain how these and several string-like special points arise and are connected. In some cases, the framework endows the theories with a non-perturbative definition for the first time. Notably, we discover that the Painleve IV equation plays a key role in organizing the string theory physics, joining its siblings, Painleve I and II, whose roles have previously been identified in this minimal string context.

  10. Macroscopic fundamental strings in cosmology

    Energy Technology Data Exchange (ETDEWEB)

    Aharonov, Y; Englert, F; Orloff, J

    1987-12-24

    We show that, when D greater than or equal to 4, theories of closed strings of closed strings in D, non-compact space-time dimensions exhibit a phase transition. The high-temperature phase is characterized by a condensate of arbitrarily long strings with Hausdorff dimension two (area filling curves). We suggest that this stringy phase is the ancestor of the adiabatic era. Fundamental strings could then both drive the inflation and seed, in a way reminiscent of the cosmic string mechanism, the large structures in the universe.

  11. Interpolating string field theories

    International Nuclear Information System (INIS)

    Zwiebach, B.

    1992-01-01

    This paper reports that a minimal area problem imposing different length conditions on open and closed curves is shown to define a one-parameter family of covariant open-closed quantum string field theories. These interpolate from a recently proposed factorizable open-closed theory up to an extended version of Witten's open string field theory capable of incorporating on shell closed strings. The string diagrams of the latter define a new decomposition of the moduli spaces of Riemann surfaces with punctures and boundaries based on quadratic differentials with both first order and second order poles

  12. Baryon string model

    International Nuclear Information System (INIS)

    Klimenko, S.V.; Kochin, V.N.; Plyushchaj, M.S.; Pron'ko, G.P.; Razumov, A.V.; Samarin, A.V.

    1985-01-01

    Partial solutions to classical equations of three-string motion are considered. Simplest solutions, when three-string center moving with high velocity, are co nsidered. Single-mode solutions are studied. Explicit form of their parametrization is obtained and three-string dynamics visualization is made. Means of graphic packet ''Atom'' were used for visualization. A set of processes for graphic representation of multiparametric functions is developed. Peculiarity of these processes is a wide class of functions, which are represented by parametric, coordinate and functional isolines

  13. A string matching based algorithm for performance evaluation of ...

    Indian Academy of Sciences (India)

    In this paper, we have addressed the problem of automated performance evaluation of Mathematical Expression (ME) recognition. Automated evaluation requires that recognition output and ground truth in some editable format like LaTeX, MathML, etc. have to be matched. But standard forms can have extraneous symbols ...

  14. String theory compactifications

    CERN Document Server

    Graña, Mariana

    2017-01-01

    The lectures in this book provide graduate students and non-specialist researchers with a concise introduction to the concepts and formalism required to reduce the ten-dimensional string theories to the observable four-dimensional space-time - a procedure called string compactification. The text starts with a very brief introduction to string theory, first working out its massless spectrum and showing how the condition on the number of dimensions arises. It then dwells on the different possible internal manifolds, from the simplest to the most relevant phenomenologically, thereby showing that the most elegant description is through an extension of ordinary Riemannian geometry termed generalized geometry, which was first introduced by Hitchin. Last but not least, the authors review open problems in string phenomenology, such as the embedding of the Standard Model and obtaining de Sitter solutions.

  15. Strings, Branes and Symmetries

    International Nuclear Information System (INIS)

    Westerberg, A.

    1997-01-01

    Recent dramatic progress in the understanding of the non-perturbative structure of superstring theory shows that extended objects of various kinds, collectively referred to as p-branes, are an integral part of the theory. In this thesis, comprising an introductory text and seven appended research papers, we study various aspects of p-branes with relevance for superstring theory. The first part of the introductory text is a brief review of string theory focussing on the role of p-branes. In particular, we consider the so-called D-branes which currently are attracting a considerable amount of attention. The purpose of this part is mainly to put into context the results of paper 4, 5 and 6 concerning action functionals describing the low-energy dynamics of D-branes. The discussion of perturbative string theory given in this part of the introduction is also intended to provide some background to paper 2 which contains an application of the Reggeon-sewing approach to the construction of string vertices. The second part covers a rather different subject, namely higher-dimensional loop algebras and their cohomology, with the aim of facilitating the reading of papers 1, 3 and 7. The relation to p-branes is to be found in paper 1 where we introduce a certain higher-dimensional generalization of the loop algebra and discuss its potential applicability as a symmetry algebra for p-branes. Papers 3 and 7 are mathematically oriented out-growths of this paper addressing the issue of realizing algebras of this kind, known in physics as current algebras, in terms of pseudo differential operators (PSDOs). The main result of paper 3 is a proof of the equivalence between certain Lie-algebra cocycles on the space of second-quantizable PSDOs

  16. Observation of Motion of Bowed Strings and Resonant Strings in Violin Performances

    Science.gov (United States)

    Matsutani, Akihiro

    2013-10-01

    The motion of a bowed string and a resonant string of a violin were simultaneously observed for the first time. The results of the direct observation of string motion in double stops and harmonics are also presented. The importance of the resonance was experimentally demonstrated from these observations. It is suggested that players should take account of the resonance and ideal Helmholtz motion in violin performances.

  17. Maximal unbordered factors of random strings

    DEFF Research Database (Denmark)

    Cording, Patrick Hagge; Knudsen, Mathias Bæk Tejs

    2016-01-01

    A border of a string is a non-empty prefix of the string that is also a suffix of the string, and a string is unbordered if it has no border. Loptev, Kucherov, and Starikovskaya [CPM 2015] conjectured the following: If we pick a string of length n from a fixed alphabet uniformly at random...

  18. Non-critical Poincare invariant bosonic string backgrounds and closed string tachyons

    International Nuclear Information System (INIS)

    Alvarez, Enrique; Gomez, Cesar; Hernandez, Lorenzo

    2001-01-01

    A new family of non critical bosonic string backgrounds in arbitrary space-time dimension D and with ISO(1,D-2) Poincare invariance are presented. The metric warping factor and dilaton agree asymptotically with the linear dilaton background. The closed string tachyon equation of motion enjoys, in the linear approximation, an exact solution of 'kink' type interpolating between different expectation values. A renormalization group flow interpretation, based on a closed string tachyon potential of type -T 2 e -T , is suggested

  19. Quantum backreaction in string theory

    International Nuclear Information System (INIS)

    Evnin, O.

    2012-01-01

    There are situations in string theory when a finite number of string quanta induce a significant backreaction upon the background and render the perturbation theory infrared-divergent. The simplest example is D0-brane recoil under an impact by closed strings. A more physically interesting case is backreaction on the evolution of a totally compact universe due to closed string gas. Such situations necessitate qualitative amendments to the traditional formulation of string theory in a fixed classical background. In this contribution to the proceedings of the XVII European Workshop on String Theory in Padua, I review solved problems and current investigations in relation to this kind of quantum backreaction effects. (Copyright copyright 2012 WILEY-VCH Verlag GmbH and Co. KGaA, Weinheim)

  20. String model of elementary particles

    International Nuclear Information System (INIS)

    Kikkawa, Keiji

    1975-01-01

    Recent development of the models of elementary particles is described. The principal features of elementary particle physics can be expressed by quark model, mass spectrum, the Regge behavior of scattering amplitude, and duality. Venezians showed in 1968 that the B function can express these features. From the analysis of mass spectrum, the string model was introduced. The quantization of the string is performed with the same procedure as the ordinary quantum mechanics. The motion of the string is determined by the Nambu-Goto action integral, and the Schroedinger equation is obtained. Mass spectrum from the string model was same as that from the duality model such as Veneziano model. The interaction between strings can be introduced, and the Lagrangian can be formulated. The relation between the string model and the duality model has been studied. The string model is the first theory of non-local field, and the further development is attractive. The relation between this model and the quark model is still not clear. (Kato, T.)

  1. Inflationary string theory?

    Indian Academy of Sciences (India)

    strongly motivate a detailed search for inflation within string theory, although it has ... between string theory and observations provides a strong incentive for ..... sonably be expected to arise for any system having very many degrees of freedom.

  2. Open strings on AdS2 branes

    International Nuclear Information System (INIS)

    Lee, Peter; Ooguri, Hirosi.; Park, Jongwon; Tannenhauser, Jonathan

    2001-01-01

    We study the spectrum of open strings on AdS 2 branes in AdS 3 in an NS-NS background, using the SL(2,R) WZW model. When the brane carries no fundamental string charge, the open string spectrum is the holomorphic square root of the spectrum of closed strings in AdS 3 . It contains short and long strings, and is invariant under spectral flow. When the brane carries fundamental string charge, the open string spectrum again contains short and long strings in all winding sectors. However, branes with fundamental string charge break half the spectral flow symmetry. This has different implications for short and long strings. As the fundamental string charge increases, the brane approaches the boundary of AdS 3 . In this limit, the induced electric field on the worldvolume reaches its critical value, producing noncommutative open string theory on AdS 2

  3. Spin structures on algebraic curves and their applications in string theories

    International Nuclear Information System (INIS)

    Ferrari, F.

    1990-01-01

    The free fields on a Riemann surface carrying spin structures live on an unramified r-covering of the surface itself. When the surface is represented as an algebraic curve related to the vanishing of the Weierstrass polynomial, its r-coverings are algebraic curves as well. We construct explicitly the Weierstrass polynomial associated to the r-coverings of an algebraic curve. Using standard techniques of algebraic geometry it is then possible to solve the inverse Jacobi problem for the odd spin structures. As an application we derive the partition functions of bosonic string theories in many examples, including two general curves of genus three and four. The partition functions are explicitly expressed in terms of branch points apart from a factor which is essentially a theta constant. 53 refs., 4 figs. (Author)

  4. 6d string chains

    Science.gov (United States)

    Gadde, Abhijit; Haghighat, Babak; Kim, Joonho; Kim, Seok; Lockhart, Guglielmo; Vafa, Cumrun

    2018-02-01

    We consider bound states of strings which arise in 6d (1,0) SCFTs that are realized in F-theory in terms of linear chains of spheres with negative self-intersections 1,2, and 4. These include the strings associated to N small E 8 instantons, as well as the ones associated to M5 branes probing A and D type singularities in M-theory or D5 branes probing ADE singularities in Type IIB string theory. We find that these bound states of strings admit (0,4) supersymmetric quiver descriptions and show how one can compute their elliptic genera.

  5. Instability of colliding metastable strings

    International Nuclear Information System (INIS)

    Hiramatsu, Takashi; Kobayashi, Tatsuo; Ookouchi, Yutaka; Kyoto Univ.

    2013-04-01

    We investigate the collision dynamics of two metastable strings which can be viewed as tube-like domain walls with winding numbers interpolating a false vacuum and a true vacuum. We find that depending on the relative angle and speed of two strings, instability of strings increases and the false vacuum is filled out by rapid expansion of the strings or of a remnant of the collision.

  6. String theory in four dimensions

    International Nuclear Information System (INIS)

    Dine, M.

    1988-01-01

    A representative sample of current ideas about how one might develop a string phenomenology is presented. Some of the obstacles which lie in between string theory and contact with experiment are described. It is hoped that this volume will provide the reader with ways of thinking about string theory in four dimensions and provide tools for asking questions about string theory and ordinary physics. 102 refs

  7. Instability of colliding metastable strings

    Energy Technology Data Exchange (ETDEWEB)

    Hiramatsu, Takashi [Kyoto Univ. (Japan). Yukawa Inst. for Theoretical Physics; Eto, Minoru [Yamagata Univ. (Japan). Dept. of Physics; Kamada, Kohei [Deutsches Elektronen-Synchrotron (DESY), Hamburg (Germany); Kobayashi, Tatsuo [Kyoto Univ. (Japan). Dept. of Physics; Ookouchi, Yutaka [Kyoto Univ. (Japan). Dept. of Physics; Kyoto Univ. (Japan). The Hakubi Center for Advanced Research

    2013-04-15

    We investigate the collision dynamics of two metastable strings which can be viewed as tube-like domain walls with winding numbers interpolating a false vacuum and a true vacuum. We find that depending on the relative angle and speed of two strings, instability of strings increases and the false vacuum is filled out by rapid expansion of the strings or of a remnant of the collision.

  8. Are Stopped Strings Preferred in Sad Music?

    OpenAIRE

    David Huron; Caitlyn Trevor

    2017-01-01

    String instruments may be played either with open strings (where the string vibrates between the bridge and a hard wooden nut) or with stopped strings (where the string vibrates between the bridge and a performer's finger pressed against the fingerboard). Compared with open strings, stopped strings permit the use of vibrato and exhibit a darker timbre. Inspired by research on the timbre of sad speech, we test whether there is a tendency to use stopped strings in nominally sad music. Specifica...

  9. Superconducting cosmic strings

    International Nuclear Information System (INIS)

    Chudnovsky, E.M.; Field, G.B.; Spergel, D.N.; Vilenkin, A.

    1986-01-01

    Superconducting loops of string formed in the early Universe, if they are relatively light, can be an important source of relativistic particles in the Galaxy. They can be observed as sources of synchrotron radiation at centimeter wavelengths. We propose a string model for two recently discovered radio sources, the ''thread'' in the galactic center and the source G357.7-0.1, and predict that the filaments in these sources should move at relativistic speeds. We also consider superheavy superconducting strings, and the possibility that they be observed as extragalactic radio sources

  10. Wavelet-Bayesian inference of cosmic strings embedded in the cosmic microwave background

    Science.gov (United States)

    McEwen, J. D.; Feeney, S. M.; Peiris, H. V.; Wiaux, Y.; Ringeval, C.; Bouchet, F. R.

    2017-12-01

    Cosmic strings are a well-motivated extension to the standard cosmological model and could induce a subdominant component in the anisotropies of the cosmic microwave background (CMB), in addition to the standard inflationary component. The detection of strings, while observationally challenging, would provide a direct probe of physics at very high-energy scales. We develop a framework for cosmic string inference from observations of the CMB made over the celestial sphere, performing a Bayesian analysis in wavelet space where the string-induced CMB component has distinct statistical properties to the standard inflationary component. Our wavelet-Bayesian framework provides a principled approach to compute the posterior distribution of the string tension Gμ and the Bayesian evidence ratio comparing the string model to the standard inflationary model. Furthermore, we present a technique to recover an estimate of any string-induced CMB map embedded in observational data. Using Planck-like simulations, we demonstrate the application of our framework and evaluate its performance. The method is sensitive to Gμ ∼ 5 × 10-7 for Nambu-Goto string simulations that include an integrated Sachs-Wolfe contribution only and do not include any recombination effects, before any parameters of the analysis are optimized. The sensitivity of the method compares favourably with other techniques applied to the same simulations.

  11. The operator formalism and contact terms in string theory

    International Nuclear Information System (INIS)

    Doyle, M.D.

    1992-01-01

    The operator formalism has proven to be a powerful tool in string theory. In particular, by making explicit the role of a choice of local coordinates (or, equivalently, a normal-ordering prescription) at vertex operator insertions, it provides a framework for understanding the insertion of very general states in both on-shell string theory and string field theory, for formulating a semirigid N = 2 geometry-based approach to topological gravity, for resolving ambiguities in fermionic string theory, and for analyzing contact interactions. The main focus of this thesis on this last application of the operator formalism, although it touches on each of the others. The first goal is the analysis of the dilaton contact terms required for the dilaton equation in the bosonic and heterotic strings. In the bosonic case, a coordinate family appropriate for a punctured sphere is given and is used to calculate dilaton two-point functions. This coordinate family is later generalized to a 'good' coordinate family appropriate for dilaton calculations on higher genus surfaces. It is found that dilaton-dilaton contact terms are improperly normalized resulting in the failure of the dilaton equation, suggesting that the zero-momentum dilaton is not the string coupling constant. This seems to be the result of a tachyon divergence. A similar calculation in the heterotic case, where there is no tachyon, shows that the dilaton contact terms are properly normalized, and that the dilaton equation and the interpretation of the dilaton as the string coupling constant goes through. The other major goal is re-examination of Green and Seiberg's work which showed that, in simple treatments of fermionic string theory, it is necessary to introduce contact interactions when vertex operators collide to avoid the failure of certain superconformal Ward identities

  12. Transverse structure of the QCD string

    International Nuclear Information System (INIS)

    Meyer, Harvey B.

    2010-01-01

    The characterization of the transverse structure of the QCD string is discussed. We formulate a conjecture as to how the stress-energy tensor of the underlying gauge theory couples to the string degrees of freedom. A consequence of the conjecture is that the energy density and the longitudinal-stress operators measure the distribution of the transverse position of the string, to leading order in the string fluctuations, whereas the transverse-stress operator does not. We interpret recent numerical measurements of the transverse size of the confining string and show that the difference of the energy and longitudinal-stress operators is a particularly natural probe at next-to-leading order. Second, we derive the constraints imposed by open-closed string duality on the transverse structure of the string. We show that a total of three independent ''gravitational'' form factors characterize the transverse profile of the closed string, and obtain the interpretation of recent effective string theory calculations: the square radius of a closed string of length β defined from the slope of its gravitational form factor, is given by (d-1/2πσ)log(β/4r 0 ) in d space dimensions. This is to be compared with the well-known result that the width of the open string at midpoint grows as (d-1/2πσ)log(r/r 0 ). We also obtain predictions for transition form factors among closed-string states.

  13. Braiding knots with topological strings

    International Nuclear Information System (INIS)

    Gu, Jie

    2015-08-01

    For an arbitrary knot in a three-sphere, the Ooguri-Vafa conjecture associates to it a unique stack of branes in type A topological string on the resolved conifold, and relates the colored HOMFLY invariants of the knot to the free energies on the branes. For torus knots, we use a modified version of the topological recursion developed by Eynard and Orantin to compute the free energies on the branes from the Aganagic-Vafa spectral curves of the branes, and find they are consistent with the known colored HOMFLY knot invariants a la the Ooguri-Vafa conjecture. In addition our modified topological recursion can reproduce the correct closed string free energies, which encode the information of the background geometry. We conjecture the modified topological recursion is applicable for branes associated to hyperbolic knots as well, encouraged by the observation that the modified topological recursion yields the correct planar closed string free energy from the Aganagic-Vafa spectral curves of hyperbolic knots. This has implications for the knot theory concerning distinguishing mutant knots with colored HOMFLY invariants. Furthermore, for hyperbolic knots, we present methods to compute colored HOMFLY invariants in nonsymmetric representations of U(N). The key step in this computation is computing quantum 6j-symbols in the quantum group U q (sl N ).

  14. 6d, Coulomb branch anomaly matching

    Science.gov (United States)

    Intriligator, Kenneth

    2014-10-01

    6d QFTs are constrained by the analog of 't Hooft anomaly matching: all anomalies for global symmetries and metric backgrounds are constants of RG flows, and for all vacua in moduli spaces. We discuss an anomaly matching mechanism for 6d theories on their Coulomb branch. It is a global symmetry analog of Green-Schwarz-West-Sagnotti anomaly cancellation, and requires the apparent anomaly mismatch to be a perfect square, . Then Δ I 8 is cancelled by making X 4 an electric/magnetic source for the tensor multiplet, so background gauge field instantons yield charged strings. This requires the coefficients in X 4 to be integrally quantized. We illustrate this for theories. We also consider the SCFTs from N small E8 instantons, verifying that the recent result for its anomaly polynomial fits with the anomaly matching mechanism.

  15. Learning SAS’s Perl Regular Expression Matching the Easy Way: By Doing

    Science.gov (United States)

    2015-01-12

    Doing 5a. CONTRACT NUMBER 5b. GRANT NUMBER 5c. PROGRAM ELEMENT NUMBER 6. AUTHOR(S) Paul Genovesi 5d. PROJECT NUMBER 5e. TASK NUMBER 5f...regex_learning_tool allows both beginner and expert to efficiently practice PRX matching by selecting and processing only the match records that the user is interested...perl regular expression and/or source string. The regex_learning_tool allows both beginner and expert to efficiently practice PRX matching by

  16. Disordered chaotic strings

    DEFF Research Database (Denmark)

    Schäfer, Mirko; Greiner, Martin

    2011-01-01

    to chaotic strings. Inhomogeneous coupling weights as well as small-world perturbations of the ring-network structure are discussed. It is found that certain combinations of coupling and network disorder preserve the empirical relationship between chaotic strings and the weak and strong sector...

  17. QCD and string theories

    International Nuclear Information System (INIS)

    Cohen-Tannoudji, G.

    1990-01-01

    This paper is devoted to a review of the connections between quantumchromodynamics (QCD) and string theories. One reviews the phenomenological models leading to string pictures in non perturbative QCD and the string effects, related to soft gluon coherence, which arise in perturbative QCD. One tries to build a string theory which goes to QCD at the zero slope limit. A specific model, based on superstring theories is shown to agree with QCD four point amplitudes at the Born approximation and with one loop corrections. One shows how this approach can provide a theoretical framework to account for the phenomenological property of parton-hadron duality

  18. QCD and hadronic strings

    International Nuclear Information System (INIS)

    Cohen-Tannoudji, G.

    1989-01-01

    This series of lectures is devoted to review ot he connections between QCD and string theories. One reviews the phenomenological models leading to string pictures in non perturbative QCD and the string effects, related to soft gluon coherence, which arise in perturbative QCD. One tries to build a string theory which goes to QCD at the zero slope limit. A specific model, based on superstring theories is shown to agree with QCD four point amplitudes at the Born approximation and with one loop corrections. One shows how this approach can provide a theoretical framework to account for the phenomenological property of parton-hadron duality.(author)

  19. On k-string tensions and domain walls in N=1 gluodynamics

    International Nuclear Information System (INIS)

    Armoni, A.; Shifman, M.

    2003-01-01

    We discuss the k-dependence of the k-string tension σ k in SU(N) supersymmetric gluodynamics. As is well known, at large N the k-string consists, to leading order, of k noninteracting fundamental strings, so that σ k =kσ 1 . We argue, both from field-theory and string-theory side, that subleading corrections to this formula run in powers of 1/N 2 rather than 1/N, thus excluding the Casimir scaling. We suggest a heuristic model allowing one to relate the k-string tension in four-dimensional gluodynamics with the tension of the BPS domain walls (k-walls). In this model the domain walls are made of a net of strings connected to each other by baryon vertices. The relation emerging in this way leads to the sine formula σ k ∼Λ 2 Nsinπk/N. We discuss possible corrections to the sine law, and present arguments that they are suppressed by 1/k factors. We explain why the sine law does not hold in two dimensions. Finally, we discuss the applicability of the sine formula for non-supersymmetric orientifold field theories

  20. String bit models for superstring

    International Nuclear Information System (INIS)

    Bergman, O.; Thorn, C.B.

    1995-01-01

    The authors extend the model of string as a polymer of string bits to the case of superstring. They mainly concentrate on type II-B superstring, with some discussion of the obstacles presented by not II-B superstring, together with possible strategies for surmounting them. As with previous work on bosonic string work within the light-cone gauge. The bit model possesses a good deal less symmetry than the continuous string theory. For one thing, the bit model is formulated as a Galilei invariant theory in (D - 2) + 1 dimensional space-time. This means that Poincare invariance is reduced to the Galilei subgroup in D - 2 space dimensions. Naturally the supersymmetry present in the bit model is likewise dramatically reduced. Continuous string can arise in the bit models with the formation of infinitely long polymers of string bits. Under the right circumstances (at the critical dimension) these polymers can behave as string moving in D dimensional space-time enjoying the full N = 2 Poincare supersymmetric dynamics of type II-B superstring

  1. String bit models for superstring

    Energy Technology Data Exchange (ETDEWEB)

    Bergman, O.; Thorn, C.B.

    1995-12-31

    The authors extend the model of string as a polymer of string bits to the case of superstring. They mainly concentrate on type II-B superstring, with some discussion of the obstacles presented by not II-B superstring, together with possible strategies for surmounting them. As with previous work on bosonic string work within the light-cone gauge. The bit model possesses a good deal less symmetry than the continuous string theory. For one thing, the bit model is formulated as a Galilei invariant theory in (D {minus} 2) + 1 dimensional space-time. This means that Poincare invariance is reduced to the Galilei subgroup in D {minus} 2 space dimensions. Naturally the supersymmetry present in the bit model is likewise dramatically reduced. Continuous string can arise in the bit models with the formation of infinitely long polymers of string bits. Under the right circumstances (at the critical dimension) these polymers can behave as string moving in D dimensional space-time enjoying the full N = 2 Poincare supersymmetric dynamics of type II-B superstring.

  2. Comparing double string theory actions

    International Nuclear Information System (INIS)

    De Angelis, L.; Gionti, S.J.G.; Marotta, R.; Pezzella, F.

    2014-01-01

    Aimed to a deeper comprehension of a manifestly T-dual invariant formulation of string theory, in this paper a detailed comparison between the non-covariant action proposed by Tseytlin and the covariant one proposed by Hull is done. These are obtained by making both the string coordinates and their duals explicitly appear, on the same footing, in the world-sheet action, so “doubling” the string coordinates along the compact dimensions. After a discussion on the nature of the constraints in both the models and the relative quantization, it results that the string coordinates and their duals behave like “non-commuting” phase space coordinates but their expressions in terms of Fourier modes generate the oscillator algebra of the standard bosonic string. A proof of the equivalence of the two formulations is given. Furthermore, open-string solutions are also discussed

  3. Comparing double string theory actions

    Energy Technology Data Exchange (ETDEWEB)

    De Angelis, L. [Dipartimento di Fisica, Università degli Studi “Federico II” di Napoli,Complesso Universitario Monte S. Angelo ed. 6, via Cintia, 80126 Napoli (Italy); Gionti, S.J.G. [Specola Vaticana, Vatican City, V-00120, Vatican City State and Vatican Observatory Research Group, Steward Observatory, The University Of Arizona, 933 North Cherry Avenue, Tucson, Arizona 85721 (United States); Marotta, R.; Pezzella, F. [Istituto Nazionale di Fisica Nucleare, Sezione di Napoli,Complesso Universitario di Monte S. Angelo ed. 6, via Cintia, 80126 Napoli (Italy)

    2014-04-28

    Aimed to a deeper comprehension of a manifestly T-dual invariant formulation of string theory, in this paper a detailed comparison between the non-covariant action proposed by Tseytlin and the covariant one proposed by Hull is done. These are obtained by making both the string coordinates and their duals explicitly appear, on the same footing, in the world-sheet action, so “doubling” the string coordinates along the compact dimensions. After a discussion on the nature of the constraints in both the models and the relative quantization, it results that the string coordinates and their duals behave like “non-commuting” phase space coordinates but their expressions in terms of Fourier modes generate the oscillator algebra of the standard bosonic string. A proof of the equivalence of the two formulations is given. Furthermore, open-string solutions are also discussed.

  4. Metastable cosmic strings in realistic models

    International Nuclear Information System (INIS)

    Holman, R.

    1992-01-01

    The stability of the electroweak Z-string is investigated at high temperatures. The results show that, while finite temperature corrections can improve the stability of the Z-string, their effect is not strong enough to stabilize the Z-string in the standard electroweak model. Consequently, the Z-string will be unstable even under the conditions present during the electroweak phase transition. Phenomenologically viable models based on the gauge group SU(2) L x SU(2) R x U(1) B-L are then considered, and it is shown that metastable strings exist and are stable to small perturbations for a large region of the parameter space for these models. It is also shown that these strings are superconducting with bosonic charge carriers. The string superconductivity may be able to stabilize segments and loops against dynamical contraction. Possible implications of these strings for cosmology are discussed

  5. Hunting for TeV Scale Strings at the LHC

    CERN Document Server

    Bars, Itzhak

    2010-01-01

    In this paper I review the possibility of TeV scale strings that may be detectable by the Large Hadron Collider (LHC). This possibility was investigated extensively in a series of phenomenological papers during 1984-1985 in connection with the Superconducting Super Collider (SSC). The work was mainly based on a model independent systematic parametrization of scattering amplitudes and cross sections, for Standard Model particles, quarks and leptons, that were assumed to behave like strings, while gluons, photons, $W^{\\pm},Z$ were taken as elementary. By using Veneziano type beta functions consistent with crossing symmetry, duality and Regge behavior, bosonic or fermionic resonances in each channel were included, while the low energy behavior was matched to effective field theory non-renormalizable interactions consistent with the Standard Model SU(3)xSU(2)xU(1) gauge symmetry as well as global flavor and family symmetries. The motivation for this approach at that time was the possible compositeness of quarks a...

  6. Algorithms and Data Structures for Strings, Points and Integers

    DEFF Research Database (Denmark)

    Vind, Søren Juhl

    a string under a compression scheme that can achieve better than entropy compression. We also give improved results for the substring concatenation problem, and an extension of our structure can be used as a black box to get an improved solution to the previously studied dynamic text static pattern problem....... Compressed Pattern Matching. In the streaming model, input data flows past a client one item at a time, but is far too large for the client to store. The annotated streaming model extends the model by introducing a powerful but untrusted annotator (representing “the cloud”) that can annotate input elements...... with additional information, sent as one-way communication to the client. We generalize the annotated streaming model to be able to solve problems on strings and present a data structure that allows us to trade off client space and annotation size. This lets us exploit the power of the annotator. In compressed...

  7. Constraints on cosmic strings due to black holes formed from collapsed cosmic string loops

    International Nuclear Information System (INIS)

    Caldwell, R.R.; Gates, E.

    1993-05-01

    The cosmological features of primordial black holes formed from collapsed cosmic string loops are studied. Observational restrictions on a population of primordial black holes are used to restrict f, the fraction of cosmic string loops which collapse to form black holes, and μ, the cosmic string mass-per-unit-length. Using a realistic model of cosmic strings, we find the strongest restriction on the parameters f and μ is due to the energy density in 100MeV photons radiated by the black holes. We also find that inert black hole remnants cannot serve as the dark matter. If earlier, crude estimates of f are reliable, our results severely restrict μ, and therefore limit the viability of the cosmic string large-scale structure scenario

  8. String Chopping and Time-ordered Products of Linear String-localized Quantum Fields

    Science.gov (United States)

    Cardoso, Lucas T.; Mund, Jens; Várilly, Joseph C.

    2018-03-01

    For a renormalizability proof of perturbative models in the Epstein-Glaser scheme with string-localized quantum fields, one needs to know what freedom one has in the definition of time-ordered products of the interaction Lagrangian. This paper provides a first step in that direction. The basic issue is the presence of an open set of n-tuples of strings which cannot be chronologically ordered. We resolve it by showing that almost all such string configurations can be dissected into finitely many pieces which can indeed be chronologically ordered. This fixes the time-ordered products of linear field factors outside a nullset of string configurations. (The extension across the nullset, as well as the definition of time-ordered products of Wick monomials, will be discussed elsewhere).

  9. On topological string theory with Calabi-Yau backgrounds

    International Nuclear Information System (INIS)

    Haghighat, Babak

    2009-01-01

    String theory represents a unifying framework for quantum field theory as well as for general relativity combining them into a theory of quantum gravity. The topological string is a subsector of the full string theory capturing physical amplitudes which only depend on the topology of the compactification manifold. Starting with a review of the physical applications of topological string theory we go on to give a detailed description of its theoretical framework and mathematical principles. Having this way provided the grounding for concrete calculations we proceed to solve the theory on three major types of Calabi-Yau manifolds, namely Grassmannian Calabi-Yau manifolds, local Calabi-Yau manifolds, and K3 fibrations. Our method of solution is the integration of the holomorphic anomaly equations and fixing the holomorphic ambiguity by physical boundary conditions. We determine the correct parameterization of the ambiguity and new boundary conditions at various singularity loci in moduli space. Among the main results of this thesis are the tables of degeneracies of BPS states in the appendices and the verification of the correct microscopic entropy interpretation for five dimensional extremal black holes arising from compactifications on Grassmannian Calabi-Yau manifolds. (orig.)

  10. On topological string theory with Calabi-Yau backgrounds

    International Nuclear Information System (INIS)

    Haghighat, Babak

    2010-06-01

    String theory represents a unifying framework for quantum field theory as well as for general relativity combining them into a theory of quantum gravity. The topological string is a subsector of the full string theory capturing physical amplitudes which only depend on the topology of the compactification manifold. Starting with a review of the physical applications of topological string theory we go on to give a detailed description of its theoretical framework and mathematical principles. Having this way provided the grounding for concrete calculations we proceed to solve the theory on three major types of Calabi-Yau manifolds, namely Grassmannian Calabi-Yau manifolds, local Calabi-Yau manifolds, and K3 fibrations. Our method of solution is the integration of the holomorphic anomaly equations and fixing the holomorphic ambiguity by physical boundary conditions. We determine the correct parameterization of the ambiguity and new boundary conditions at various singularity loci in moduli space. Among the main results of this thesis are the tables of degeneracies of BPS states in the appendices and the veri cation of the correct microscopic entropy interpretation for five dimensional extremal black holes arising from compactifications on Grassmannian Calabi-Yau manifolds. (orig.)

  11. On topological string theory with Calabi-Yau backgrounds

    Energy Technology Data Exchange (ETDEWEB)

    Haghighat, Babak

    2010-06-15

    String theory represents a unifying framework for quantum field theory as well as for general relativity combining them into a theory of quantum gravity. The topological string is a subsector of the full string theory capturing physical amplitudes which only depend on the topology of the compactification manifold. Starting with a review of the physical applications of topological string theory we go on to give a detailed description of its theoretical framework and mathematical principles. Having this way provided the grounding for concrete calculations we proceed to solve the theory on three major types of Calabi-Yau manifolds, namely Grassmannian Calabi-Yau manifolds, local Calabi-Yau manifolds, and K3 fibrations. Our method of solution is the integration of the holomorphic anomaly equations and fixing the holomorphic ambiguity by physical boundary conditions. We determine the correct parameterization of the ambiguity and new boundary conditions at various singularity loci in moduli space. Among the main results of this thesis are the tables of degeneracies of BPS states in the appendices and the veri cation of the correct microscopic entropy interpretation for five dimensional extremal black holes arising from compactifications on Grassmannian Calabi-Yau manifolds. (orig.)

  12. On topological string theory with Calabi-Yau backgrounds

    Energy Technology Data Exchange (ETDEWEB)

    Haghighat, Babak

    2009-10-29

    String theory represents a unifying framework for quantum field theory as well as for general relativity combining them into a theory of quantum gravity. The topological string is a subsector of the full string theory capturing physical amplitudes which only depend on the topology of the compactification manifold. Starting with a review of the physical applications of topological string theory we go on to give a detailed description of its theoretical framework and mathematical principles. Having this way provided the grounding for concrete calculations we proceed to solve the theory on three major types of Calabi-Yau manifolds, namely Grassmannian Calabi-Yau manifolds, local Calabi-Yau manifolds, and K3 fibrations. Our method of solution is the integration of the holomorphic anomaly equations and fixing the holomorphic ambiguity by physical boundary conditions. We determine the correct parameterization of the ambiguity and new boundary conditions at various singularity loci in moduli space. Among the main results of this thesis are the tables of degeneracies of BPS states in the appendices and the verification of the correct microscopic entropy interpretation for five dimensional extremal black holes arising from compactifications on Grassmannian Calabi-Yau manifolds. (orig.)

  13. The Consensus String Problem and the Complexity of Comparing Hidden Markov Models

    DEFF Research Database (Denmark)

    Lyngsø, Rune Bang; Pedersen, Christian Nørgaard Storm

    2002-01-01

    The basic theory of hidden Markov models was developed and applied to problems in speech recognition in the late 1960s, and has since then been applied to numerous problems, e.g. biological sequence analysis. Most applications of hidden Markov models are based on efficient algorithms for computing...... the probability of generating a given string, or computing the most likely path generating a given string. In this paper we consider the problem of computing the most likely string, or consensus string, generated by a given model, and its implications on the complexity of comparing hidden Markov models. We show...... that computing the consensus string, and approximating its probability within any constant factor, is NP-hard, and that the same holds for the closely related labeling problem for class hidden Markov models. Furthermore, we establish the NP-hardness of comparing two hidden Markov models under the L∞- and L1...

  14. No Strings Attached: Open Source Solutions

    Science.gov (United States)

    Fredricks, Kathy

    2009-01-01

    Imagine downloading a new software application and not having to worry about licensing, finding dollars in the budget, or incurring additional maintenance costs. Imagine finding a Web design tool in the public domain--free for use. Imagine major universities that provide online courses with no strings attached. Imagine online textbooks without a…

  15. Spintronic and transport properties of linear atomic strings of transition metals (Fe, Co, Ni)

    Energy Technology Data Exchange (ETDEWEB)

    Tyagi, Neha, E-mail: nehatyagi.phy@gmail.com [Department of Applied Physics, Delhi Technological University, New Delhi (India); Jaiswal, Neeraj K. [Discipline of Physics, PDPM-Indian Institute of Information Technology, Design & Manufacturing, Jabalpur (India); Srivastava, Pankaj [Nanomaterials Research Group, ABV-Indian Institute of Information Technology & Management, Gwalior (India)

    2016-05-06

    In the present work, first-principles investigations have been performed to study the spintronic and transport properties of linear atomic strings of Fe, Co and Ni. The structural stabilities of the considered strings were compared on the basis of binding energies which revealed that all the strings are energetically feasible to be achieved. Further, all the considered strings are found to be ferromagnetic and the observed magnetic moment ranges from 1.38 to 1.71 μ{sub B}. The observed transport properties and high spin polarization points towards their potential for nano interconnects and spintronic applications.

  16. Perspectives on string phenomenology

    CERN Document Server

    Kane, Gordon; Kumar, Piyush

    2015-01-01

    The remarkable recent discovery of the Higgs boson at the CERN Large Hadron Collider completed the Standard Model of particle physics and has paved the way for understanding the physics which may lie beyond it. String/M theory has emerged as a broad framework for describing a plethora of diverse physical systems, which includes condensed matter systems, gravitational systems as well as elementary particle physics interactions. If string/M theory is to be considered as a candidate theory of Nature, it must contain an effectively four-dimensional universe among its solutions that is indistinguishable from our own. In these solutions, the extra dimensions of string/M Theory are “compactified” on tiny scales which are often comparable to the Planck length. String phenomenology is the branch of string/M theory that studies such solutions, relates their properties to data, and aims to answer many of the outstanding questions of particle physics beyond the Standard Model. This book contains perspectives on stri...

  17. Cosmic strings and galaxy formation

    Science.gov (United States)

    Bertschinger, Edmund

    1989-01-01

    The cosmogonical model proposed by Zel'dovich and Vilenkin (1981), in which superconducting cosmic strings act as seeds for the origin of structure in the universe, is discussed, summarizing the results of recent theoretical investigations. Consideration is given to the formation of cosmic strings, the microscopic structure of strings, gravitational effects, cosmic string evolution, and the formation of galaxies and large-scale structure. Simulation results are presented in graphs, and several outstanding issues are listed and briefly characterized.

  18. On the null origin of the ambitwistor string

    Energy Technology Data Exchange (ETDEWEB)

    Casali, Eduardo [Mathematical Institute, University of Oxford,Woodstock Road, Oxford, OX2 6GG (United Kingdom); Tourkine, Piotr [Department of Applied Mathematics and Theoretical Physics,Wilberforce Road, Cambridge, CB3 0WA (United Kingdom)

    2016-11-07

    In this paper we present the null string origin of the ambitwistor string. Classically, the null string is the tensionless limit of string theory, and so too is the ambitwistor string. Both have as constraint algebra the Galilean Conformal Algebra in two dimensions. But something interesting happens in the quantum theory since there is an ambiguity in quantizing the null string. We show that, given a particular choice of quantization scheme and a particular gauge, the null string coincides with the ambitwistor string both classically and quantum mechanically. We also show that the same holds for the spinning versions of the null string and ambitwistor string. With these results we clarify the relationship between the ambitwistor string, the null string, the usual string and the Hohm-Siegel-Zwiebach theory.

  19. The QCD Effective String

    International Nuclear Information System (INIS)

    Espriu, D.

    2003-01-01

    QCD can be described in a certain kinematical regime by an effective string theory. This string must couple to background chiral fields in a chirally invariant manner, thus taking into account the true chirally non-invariant QCD vacuum. By requiring conformal symmetry of the string and the unitarity constraint on chiral fields we reconstruct the equations of motion for the latter ones. These provide a consistent background for the propagation of the string. By further requiring locality of the effective action we recover the Lagrangian of non-linear sigma model of pion interactions. The prediction is unambiguous and parameter-free. The estimated chiral structural constants of Gasser and Leutwyler fit very well the phenomenological values. (author)

  20. Application of perturbation theory to the non-linear vibration analysis of a string including the bending moment effects

    International Nuclear Information System (INIS)

    Esmaeilzadeh Khadem, S.; Rezaee, M.

    2001-01-01

    In this paper the large amplitude and non-linear vibration of a string is considered. The initial tension, lateral vibration amplitude, diameter and the modulus of elasticity of the string have main effects on its natural frequencies. Increasing the lateral vibration amplitude makes the assumption of constant initial tension invalid. In this case, therefore, it is impossible to use the classical equation of string with small amplitude transverse motion assumption. On the other hand, by increasing the string diameter, the bending moment effect will increase dramatically, and acts as an impressive restoring moment. Considering the effects of the bending moments, the nonlinear equation governing the large amplitude transverse vibration of a string is derived. The time dependent portion of the governing equation has the from of Duff ing equation is solved using the perturbation theory. The results of the analysis are shown in appropriate graphs, and the natural frequencies of the string due to the non-linear factors are compared with the natural frequencies of the linear vibration os a string without bending moment effects

  1. Using an Optimized Chinese Address Matching Method to Develop a Geocoding Service: A Case Study of Shenzhen, China

    Directory of Open Access Journals (Sweden)

    Qin Tian

    2016-05-01

    Full Text Available With the coming era of big data and the rapid development and widespread applications of Geographical Information Systems (GISs, geocoding technology is playing an increasingly important role in bridging the gap between non-spatial data resources and spatial data in various fields. However, Chinese geocoding faces great challenges because of the complexity of the address string format in Chinese, which contains no delimiters between Chinese words, and the poor address management resulting from the existence of multiple address authorities spread among different governmental agencies. This paper presents a geocoding service based on an optimized Chinese address matching method, including address modeling, address standardization and address matching. The address model focuses on the spatial semantics of each address element, and the address standardization process is based on an address tree model. A geocoding service application is implemented in practice using a large quantity of data from Shenzhen Municipality. More than 1,460,000 data records were used to test the geocoding service, and good matching rates were achieved with good adaptability and intelligence.

  2. Frequency-Zooming ARMA Modeling for Analysis of Noisy String Instrument Tones

    Directory of Open Access Journals (Sweden)

    Paulo A. A. Esquef

    2003-09-01

    Full Text Available This paper addresses model-based analysis of string instrument sounds. In particular, it reviews the application of autoregressive (AR modeling to sound analysis/synthesis purposes. Moreover, a frequency-zooming autoregressive moving average (FZ-ARMA modeling scheme is described. The performance of the FZ-ARMA method on modeling the modal behavior of isolated groups of resonance frequencies is evaluated for both synthetic and real string instrument tones immersed in background noise. We demonstrate that the FZ-ARMA modeling is a robust tool to estimate the decay time and frequency of partials of noisy tones. Finally, we discuss the use of the method in synthesis of string instrument sounds.

  3. Minimal string theories and integrable hierarchies

    Science.gov (United States)

    Iyer, Ramakrishnan

    Well-defined, non-perturbative formulations of the physics of string theories in specific minimal or superminimal model backgrounds can be obtained by solving matrix models in the double scaling limit. They provide us with the first examples of completely solvable string theories. Despite being relatively simple compared to higher dimensional critical string theories, they furnish non-perturbative descriptions of interesting physical phenomena such as geometrical transitions between D-branes and fluxes, tachyon condensation and holography. The physics of these theories in the minimal model backgrounds is succinctly encoded in a non-linear differential equation known as the string equation, along with an associated hierarchy of integrable partial differential equations (PDEs). The bosonic string in (2,2m-1) conformal minimal model backgrounds and the type 0A string in (2,4 m) superconformal minimal model backgrounds have the Korteweg-de Vries system, while type 0B in (2,4m) backgrounds has the Zakharov-Shabat system. The integrable PDE hierarchy governs flows between backgrounds with different m. In this thesis, we explore this interesting connection between minimal string theories and integrable hierarchies further. We uncover the remarkable role that an infinite hierarchy of non-linear differential equations plays in organizing and connecting certain minimal string theories non-perturbatively. We are able to embed the type 0A and 0B (A,A) minimal string theories into this single framework. The string theories arise as special limits of a rich system of equations underpinned by an integrable system known as the dispersive water wave hierarchy. We find that there are several other string-like limits of the system, and conjecture that some of them are type IIA and IIB (A,D) minimal string backgrounds. We explain how these and several other string-like special points arise and are connected. In some cases, the framework endows the theories with a non

  4. Test particle trajectories near cosmic strings

    Indian Academy of Sciences (India)

    We present a detailed analysis of the motion of test particle in the gravitational field of cosmic strings in different situations using the Hamilton–Jacobi (H–J) formalism. We have discussed the trajectories near static cosmic string, cosmic string in Brans–Dicke theory and cosmic string in dilaton gravity.

  5. Worldsheet factorization for twistor-strings

    Energy Technology Data Exchange (ETDEWEB)

    Adamo, Tim [Department of Applied Mathematics & Theoretical Physics, University of Cambridge, Wilberforce Road, Cambridge CB3 0WA (United Kingdom)

    2014-04-10

    We study the multiparticle factorization properties of two worldsheet theories which — at tree-level — describe the scattering of massless particles in four dimensions: the Berkovits-Witten twistor-string for N=4 super-Yang-Mills coupled to N=4 conformal supergravity, and the Skinner twistor-string for N=8 supergravity. By considering these string-like theories, we can study factorization at the level of the worldsheet before any Wick contractions or integrals have been performed; this is much simpler than considering the factorization properties of the amplitudes themselves. In Skinner’s twistor-string this entails the addition of worldsheet gravity as well as a formalism that represents all external states in a manifestly symmetric way, which we develop explicitly at genus zero. We confirm that the scattering amplitudes of Skinner’s theory, as well as the gauge theory amplitudes for the planar sector of the Berkovits-Witten theory, factorize appropriately at genus zero. In the non-planar sector, we find behavior indicative of conformal gravity in the Berkovits-Witten twistor-string. We contrast factorization in twistor-strings with the story in ordinary string theory, and also make some remarks on higher genus factorization and disconnected prescriptions.

  6. Worldsheet factorization for twistor-strings

    International Nuclear Information System (INIS)

    Adamo, Tim

    2014-01-01

    We study the multiparticle factorization properties of two worldsheet theories which — at tree-level — describe the scattering of massless particles in four dimensions: the Berkovits-Witten twistor-string for N=4 super-Yang-Mills coupled to N=4 conformal supergravity, and the Skinner twistor-string for N=8 supergravity. By considering these string-like theories, we can study factorization at the level of the worldsheet before any Wick contractions or integrals have been performed; this is much simpler than considering the factorization properties of the amplitudes themselves. In Skinner’s twistor-string this entails the addition of worldsheet gravity as well as a formalism that represents all external states in a manifestly symmetric way, which we develop explicitly at genus zero. We confirm that the scattering amplitudes of Skinner’s theory, as well as the gauge theory amplitudes for the planar sector of the Berkovits-Witten theory, factorize appropriately at genus zero. In the non-planar sector, we find behavior indicative of conformal gravity in the Berkovits-Witten twistor-string. We contrast factorization in twistor-strings with the story in ordinary string theory, and also make some remarks on higher genus factorization and disconnected prescriptions

  7. Fermions on the electroweak string

    CERN Document Server

    Moreno, J M; Quirós, Mariano; Moreno, J M; Oaknin, D H; Quiros, M

    1995-01-01

    We construct a simple class of exact solutions of the electroweak theory including the naked Z--string and fermion fields. It consists in the Z--string configuration (\\phi,Z_\\theta), the {\\it time} and z components of the neutral gauge bosons (Z_{0,3},A_{0,3}) and a fermion condensate (lepton or quark) zero mode. The Z--string is not altered (no feed back from the rest of fields on the Z--string) while fermion condensates are zero modes of the Dirac equation in the presence of the Z--string background (no feed back from the {\\it time} and z components of the neutral gauge bosons on the fermion fields). For the case of the n--vortex Z--string the number of zero modes found for charged leptons and quarks is (according to previous results by Jackiw and Rossi) equal to |n|, while for (massless) neutrinos is |n|-1. The presence of fermion fields in its core make the obtained configuration a superconducting string, but their presence (as well as that of Z_{0,3},A_{0,3}) does not enhance the stability of the Z--stri...

  8. Semiclassical strings in Sasaki-Einstein manifolds and long operators in N = 1 gauge theories

    International Nuclear Information System (INIS)

    Benvenuti, Sergio; Kruczenski, Martin

    2006-01-01

    We study the AdS/CFT relation between an infinite class of 5-d Y p,q Sasaki-Einstein metrics and the corresponding quiver theories. The long BPS operators of the field theories are matched to massless geodesics in the geometries, providing a test of AdS/CFT for these cases. Certain small fluctuations (in the BMN sense) can also be successfully compared. We then go further and find, using an appropriate limit, a reduced action, first order in time derivatives, which describes strings with large R-charge. In the field theory we consider holomorphic operators with large winding numbers around the quiver and find, interestingly, that, after certain simplifying assumptions, they can be described effectively as strings moving in a particular metric. Although not equal, the metric is similar to the one in the bulk. We find it encouraging that a string picture emerges directly from the field theory and discuss possible ways to improve the agreement

  9. The STRING database in 2011

    DEFF Research Database (Denmark)

    Szklarczyk, Damian; Franceschini, Andrea; Kuhn, Michael

    2011-01-01

    present an update on the online database resource Search Tool for the Retrieval of Interacting Genes (STRING); it provides uniquely comprehensive coverage and ease of access to both experimental as well as predicted interaction information. Interactions in STRING are provided with a confidence score...... models, extensive data updates and strongly improved connectivity and integration with third-party resources. Version 9.0 of STRING covers more than 1100 completely sequenced organisms; the resource can be reached at http://string-db.org....

  10. Racetrack inflation and cosmic strings

    Energy Technology Data Exchange (ETDEWEB)

    Brax, P. [CEA-Saclay, Gif sur Yvette (France). CEA/DSM/SPhT, Unite de Recherche Associee au CNRS, Service de Physique Theorique; Bruck, C. van de [Sheffield Univ. (United Kingdom). Dept. of Applied Mathematics; Davis, A.C.; Davis, S.C. [Cambridge Univ. (United Kingdom). DAMTP, Centre for Mathematical Sciences; Jeannerot, R. [Instituut-Lorentz for Theoretical Physics, Leiden (Netherlands); Postma, M. [Deutsches Elektronen-Synchrotron (DESY), Hamburg (Germany)]|[Nationaal Inst. voor Kernfysica en Hoge-Energiefysica (NIKHEF), Amsterdam (Netherlands)

    2008-05-15

    We consider the coupling of racetrack inflation to matter fields as realised in the D3/D7 brane system. In particular, we investigate the possibility of cosmic string formation in this system. We find that string formation before or at the onset of racetrack inflation is possible, but they are then inflated away. Furthermore, string formation at the end of inflation is prevented by the presence of the moduli sector. As a consequence, no strings survive racetrack inflation. (orig.)

  11. Racetrack inflation and cosmic strings

    International Nuclear Information System (INIS)

    Brax, P.; Postma, M.

    2008-05-01

    We consider the coupling of racetrack inflation to matter fields as realised in the D3/D7 brane system. In particular, we investigate the possibility of cosmic string formation in this system. We find that string formation before or at the onset of racetrack inflation is possible, but they are then inflated away. Furthermore, string formation at the end of inflation is prevented by the presence of the moduli sector. As a consequence, no strings survive racetrack inflation. (orig.)

  12. Geometric derivation of string field theory from first principles: Closed strings and modular invariance

    International Nuclear Information System (INIS)

    Kaku, M.

    1988-01-01

    We present an entirely new approach to closed-string field theory, called Igeometric string field theory R, which avoids the complications found in Becchi-Rouet-Stora-Tyutin string field theory (e.g., ghost counting, infinite overcounting of diagrams, midpoints, lack of modular invariance). Following the analogy with general relativity and Yang-Mills theory, we define a new infinite-dimensional local gauge group, called the unified string group, which uniquely specifies the connection fields, the curvature tensor, the measure and tensor calculus, and finally the action itself. Geometric field theory, when gauge fixed, yields an entirely new class of gauges called the interpolating gauge which allows us to smoothly interpolate between the midpoint gauge and the end-point gauge (''covariantized light-cone gauge''). We can show that geometric string field theory reproduces one copy of the Shapiro-Virasoro model. Surprisingly, after the gauge is broken, a new Iclosed four-string interactionR emerges as the counterpart of the instantaneous four-fermion Coulomb term in QED. This term restores modular invariance and precisely fills the missing region of the complex plane

  13. String theory as a Lilliputian world

    International Nuclear Information System (INIS)

    Ambjørn, J.; Makeenko, Y.

    2016-01-01

    Lattice regularizations of the bosonic string do not allow us to probe the tachyon. This has often been viewed as the reason why these theories have never managed to make any contact to standard continuum string theories when the dimension of spacetime is larger than two. We study the continuum string theory in large spacetime dimensions where simple mean field theory is reliable. By keeping carefully the cutoff we show that precisely the existence of a tachyon makes it possible to take a scaling limit which reproduces the lattice-string results. We compare this scaling limit with another scaling limit which reproduces standard continuum-string results. If the people working with lattice regularizations of string theories are akin to Gulliver they will view the standard string-world as a Lilliputian world no larger than a few lattice spacings.

  14. String theory as a Lilliputian world

    Energy Technology Data Exchange (ETDEWEB)

    Ambjørn, J., E-mail: ambjorn@nbi.dk [The Niels Bohr Institute, Copenhagen University, Blegdamsvej 17, DK-2100 Copenhagen (Denmark); IMAPP, Radboud University, Heyendaalseweg 135, 6525 AJ, Nijmegen (Netherlands); Makeenko, Y., E-mail: makeenko@nbi.dk [The Niels Bohr Institute, Copenhagen University, Blegdamsvej 17, DK-2100 Copenhagen (Denmark); Institute of Theoretical and Experimental Physics, B. Cheremushkinskaya 25, 117218 Moscow (Russian Federation)

    2016-05-10

    Lattice regularizations of the bosonic string do not allow us to probe the tachyon. This has often been viewed as the reason why these theories have never managed to make any contact to standard continuum string theories when the dimension of spacetime is larger than two. We study the continuum string theory in large spacetime dimensions where simple mean field theory is reliable. By keeping carefully the cutoff we show that precisely the existence of a tachyon makes it possible to take a scaling limit which reproduces the lattice-string results. We compare this scaling limit with another scaling limit which reproduces standard continuum-string results. If the people working with lattice regularizations of string theories are akin to Gulliver they will view the standard string-world as a Lilliputian world no larger than a few lattice spacings.

  15. Relativistic classical strings. II

    International Nuclear Information System (INIS)

    Galvao, C.A.P.

    1985-01-01

    The interactions of strings with electromagnetic and gravitational fields are extensively discussed. Some concepts of differential geometry are reviewed. Strings in Kaluza-Klein manifolds are studied. (L.C.) [pt

  16. A rotating string

    International Nuclear Information System (INIS)

    Jensen, B.

    1993-06-01

    The author presents a global solution of Einstein's equations which represents a rotating cosmic string with a finite coreradius. The importance of pressure for the generation of closed timelike curves outside the coreregion of such strings is clearly displayed in this model due to the simplicity of the source. 10 refs

  17. The ABCDEFG of Little Strings

    OpenAIRE

    Haouzi, Nathan; Kozçaz, Can

    2017-01-01

    Starting from type IIB string theory on an $ADE$ singularity, the (2,0) little string arises when one takes the string coupling $g_s$ to 0. In this setup, we give a unified description of the codimension-two defects of the little string, for any simple Lie algebra ${\\mathfrak{g}}$. Geometrically, these are D5 branes wrapping 2-cycles of the singularity. Equivalently, the defects are specified by a certain set of weights of $^L {\\mathfrak{g}}$, the Langlands dual of ${\\mathfrak{g}}$. As a firs...

  18. Open problems in string cosmology

    International Nuclear Information System (INIS)

    Toumbas, N.

    2010-01-01

    Some of the open problems in string cosmology are highlighted within the context of the recently constructed thermal and quantum superstring cosmological solutions. Emphasis is given on the high temperature cosmological regime, where it is argued that thermal string vacua in the presence of gravito-magnetic fluxes can be used to bypass the Hagedorn instabilities of string gas cosmology. This article is based on a talk given at the workshop on ''Cosmology and Strings'', Corfu, September 6-13, 2009. (Abstract Copyright [2010], Wiley Periodicals, Inc.)

  19. Strings, conformal fields and topology

    International Nuclear Information System (INIS)

    Kaku, Michio

    1991-01-01

    String Theory has advanced at an astonishing pace in the last few years, and this book aims to acquaint the reader with the most active topics of research in the field. Building on the foundations laid in his Introduction to Superstrings, Professor Kaku discusses such topics as the classification of conformal string theories, knot theory, the Yang-Baxter relation, quantum groups, the non-polynominal closed string field theory, matrix models, and topological field theory. Several chapters review the fundamentals of string theory, making the presentation of the material self-contained while keeping overlap with the earlier book to a minimum. The book conveys the vitality of current research in string theory and places readers at its forefront. (orig.) With 40 figs. in 50 parts

  20. Basic concepts of string theory

    International Nuclear Information System (INIS)

    Blumenhagen, Ralph

    2013-01-01

    The purpose of this book is to thoroughly prepare the reader for research in string theory. It is intended as a textbook in the sense that, starting from the basics, the material is presented in a pedagogical and self-contained fashion. The emphasis is on the world-sheet perspective of closed strings and of open strings ending on D-branes, where two-dimensional conformal field theory is the main tool. Compactifications of string theory, with and without fluxes, and string dualities are also discussed from the space-time point of view, i.e. in geometric language. End-of-chapter references have been added to guide the reader intending to pursue further studies or to start research in the topics covered by this book.

  1. First quantized noncritical relativistic Polyakov string

    International Nuclear Information System (INIS)

    Jaskolski, Z.; Meissner, K.A.

    1994-01-01

    The first quantization of the relativistic Brink-DiVecchia-Howe-Polyakov (BDHP) string in the range 1 < d 25 is considered. It is shown that using the Polyakov sum over bordered surfaces in the Feynman path integral quantization scheme one gets a consistent quantum mechanics of relativistic 1-dim extended objects in the range 1 < d < 25. In particular, the BDHP string propagator is exactly calculated for arbitrary initial and final string configurations and the Hilbert space of physical states of noncritical BDHP string is explicitly constructed. The resulting theory is equivalent to the Fairlie-Chodos-Thorn massive string model. In contrast to the conventional conformal field theory approach to noncritical string and random surfaces in the Euclidean target space the path integral formulation of the Fairlie-Chodos-Thorn string obtained in this paper does not rely on the principle of conformal invariance. Some consequences of this feature for constructing a consistent relativistic string theory based on the ''splitting-joining'' interaction are discussed. (author). 42 refs, 1 fig

  2. Black string in dRGT massive gravity

    Energy Technology Data Exchange (ETDEWEB)

    Tannukij, Lunchakorn [Mahidol University, Department of Physics, Faculty of Science, Bangkok (Thailand); Hanyang University, Department of Physics, Seoul (Korea, Republic of); Naresuan University, The Institute for Fundamental Study, Phitsanulok (Thailand); Wongjun, Pitayuth [Naresuan University, The Institute for Fundamental Study, Phitsanulok (Thailand); Ministry of Education, Thailand Center of Excellence in Physics, Bangkok (Thailand); Ghosh, Suchant G. [Jamia Millia Islamia, Centre of Theoretical Physics, New Delhi (India); University of Kwazulu-Natal, Astrophysics and Cosmology Research Unit, School of Mathematical Sciences, Durban (South Africa)

    2017-12-15

    We present a cylindrically symmetric solution, both charged and uncharged, which is known as a black string solution to the nonlinear ghost-free massive gravity found by de Rham, Gabadadze, and Tolley (dRGT). This ''dRGT black string'' can be thought of as a generalization of the black string solution found by Lemos. Moreover, the dRGT black string solution includes other classes of black string solution such as the monopole-black string ones since the graviton mass contributes to the global monopole term as well as the cosmological-constant term. To investigate the solution, we compute mass, temperature, and entropy of the dRGT black string. We found that the existence of the graviton mass drastically affects the thermodynamics of the black string. Furthermore, the Hawking-Page phase transition is found to be possible for the dRGT black string as well as the charged dRGT black string. The dRGT black string solution is thermodynamically stable for r > r{sub c} with negative thermodynamical potential and positive heat capacity while it is unstable for r < r{sub c} where the potential is positive. (orig.)

  3. Strings and quantum gravity

    International Nuclear Information System (INIS)

    Vega, H.J. de

    1990-01-01

    One of the main challenges in theoretical physics today is the unification of all interactions including gravity. At present, string theories appear as the most promising candidates to achieve such a unification. However, gravity has not completely been incorporated in string theory, many technical and conceptual problems remain and a full quantum theory of gravity is still non-existent. Our aim is to properly understand strings in the context of quantum gravity. Attempts towards this are reviewed. (author)

  4. Magnetic strings

    International Nuclear Information System (INIS)

    Chaves, Max

    2006-01-01

    The conception of the magnetic string is presented as an infinitely thin bundle of magnetic flux lines. The magnetic strings are surrounded by a film of current that rotates around them, and are a solution of Maxwell's equations. The magnetic potential contains a line singularity, and its stability can be established topologically. A few comments are added on the possibility that they may exist at a cosmological scale as relics of the Big Bang. (author) [es

  5. Dynamics of chaotic strings

    International Nuclear Information System (INIS)

    Schaefer, Mirko

    2011-01-01

    The main topic of this thesis is the investigation of dynamical properties of coupled Tchebycheff map networks. The results give insights into the chaotic string model and its network generalization from a dynamical point of view. As a first approach, discrete symmetry transformations of the model are studied. These transformations are formulated in a general way in order to be also applicable to similar dynamics on bipartite network structures. The dynamics is studied numerically via Lyapunov measures, spatial correlations, and ergodic properties. It is shown that the zeros of the interaction energy are distinguished only with respect to this specific observable, but not by a more general dynamical principle. The original chaotic string model is defined on a one-dimensional lattice (ring-network) as the underlying network topology. This thesis studies a modification of the model based on the introduction of tunable disorder. The effects of inhomogeneous coupling weights as well as small-world perturbations of the ring-network structure on the interaction energy are discussed. Synchronization properties of the chaotic string model and its network generalization are studied in later chapters of this thesis. The analysis is based on the master stability formalism, which relates the stability of the synchronized state to the spectral properties of the network. Apart from complete synchronization, where the dynamics at all nodes of the network coincide, also two-cluster synchronization on bipartite networks is studied. For both types of synchronization it is shown that depending on the type of coupling the synchronized dynamics can display chaotic as well as periodic or quasi-periodic behaviour. The semi-analytical calculations reveal that the respective synchronized states are often stable for a wide range of coupling values even for the ring-network, although the respective basins of attraction may inhabit only a small fraction of the phase space. To provide

  6. Supertwistor orbifolds: gauge theory amplitudes and topological strings

    International Nuclear Information System (INIS)

    Park, Jaemo; Rey, Soojong

    2004-01-01

    Witten established correspondence between multiparton amplitudes in four-dimensional maximally supersymmetric gauge theory and topological string theory on supertwistor space CP 3verticalbar4 . We extend Witten's correspondence to gauge theories with lower supersymmetries, product gauge groups, and fermions and scalars in complex representations. Such gauge theories arise in high-energy limit of the Standard Model of strong and electroweak interactions. We construct such theories by orbifolding prescription. Much like gauge and string theories, such prescription is applicable equally well to topological string theories on supertwistor space. We work out several examples of orbifolds of CP 3verticalbar4 that are dual to N=2,1,0 quiver gauge theories. We study gauged sigma model describing topological B-model on the superorbifolds, and explore mirror pairs with particular attention to the parity symmetry. We check the orbifold construction by studying multiparton amplitudes in these theories with particular attention to those involving fermions in bifundamental representations and interactions involving U(1) subgroups. (author)

  7. Heterotic String/F-theory Duality from Mirror Symmetry

    CERN Document Server

    Berglund, Per

    1998-01-01

    We use local mirror symmetry in type IIA string compactifications on Calabi-Yau n+1 folds $X_{n+1}$ to construct vector bundles on (possibly singular) elliptically fibered Calabi-Yau n-folds Z_n. The interpretation of these data as valid classical solutions of the heterotic string compactified on Z_n proves F-theory/heterotic duality at the classical level. Toric geometry is used to establish a systematic dictionary that assigns to each given toric n+1-fold $X_{n+1}$ a toric n fold Z_n together with a specific family of sheafs on it. This allows for a systematic construction of phenomenologically interesting d=4 N=1 heterotic vacua, e.g. on deformations of the tangent bundle, with grand unified and SU(3)\\times SU(2) gauge groups. As another application we find non-perturbative gauge enhancements of the heterotic string on singular Calabi-Yau manifolds and new non-perturbative dualities relating heterotic compactifications on different manifolds.

  8. String Theory in a Nutshell

    CERN Document Server

    Kiritsis, Elias

    2007-01-01

    This book is the essential new introduction to modern string theory, by one of the world's authorities on the subject. Concise, clearly presented, and up-to-date, String Theory in a Nutshell brings together the best understood and most important aspects of a theory that has been evolving since the early 1980s. A core model of physics that substitutes one-dimensional extended ""strings"" for zero-dimensional point-like particles (as in quantum field theory), string theory has been the leading candidate for a theory that would successfully unify all fundamental forces of nature, includin

  9. String theory and quark confinement

    International Nuclear Information System (INIS)

    Polyakov, A.M.

    1998-01-01

    This article is based on a talk given at the ''Strings '97'' conference. It discusses the search for the universality class of confining strings. The key ingredients include the loop equations, the zigzag symmetry, the non-linear renormalization group. Some new tests for the equivalence between gauge fields and strings are proposed. (orig.)

  10. Open bosonic string in background electromagnetic field

    International Nuclear Information System (INIS)

    Nesterenko, V.V.

    1987-01-01

    The classical and quantum dynamics of an open string propagating in the D-dimensional space-time in the presence of a background electromagnetic field is investigated. An important point in this consideration is the use of the generalized light-like gauge. There are considered the strings of two types; the neutral strings with charges at their ends obeying the condition q 1 +q 2 =0 and the charged strings having a net charge q 1 +q 2 ≠ 0. The consistency of theory demands that the background electric field does not exceed its critical value. The distance between the mass levels of the neutral open string decreases (1-e 2 ) times in comparison with the free string, where e is the dimensionless strength of the electric field. The magnetic field does not affect this distance. It is shown that at a classical level the squared mass of the neutral open string has a tachyonic contribution due to the motion of the string as a whole in transverse directions. The tachyonic term disappears if one considers, instead of M 2 , the string energy in a special reference frame where the projection of the total canonical momentum of the string onto the electric field vanishes. The contributions due to zero point fluctuations to the energy spectrum of the neutral string and to the Virasoro operators in the theory of charged string are found

  11. Reduced-Size Integer Linear Programming Models for String Selection Problems: Application to the Farthest String Problem.

    Science.gov (United States)

    Zörnig, Peter

    2015-08-01

    We present integer programming models for some variants of the farthest string problem. The number of variables and constraints is substantially less than that of the integer linear programming models known in the literature. Moreover, the solution of the linear programming-relaxation contains only a small proportion of noninteger values, which considerably simplifies the rounding process. Numerical tests have shown excellent results, especially when a small set of long sequences is given.

  12. Casimir energy of a nonuniform string

    Science.gov (United States)

    Hadasz, L.; Lambiase, G.; Nesterenko, V. V.

    2000-07-01

    The Casimir energy of a nonuniform string built up from two pieces with different speeds of sound is calculated. A standard procedure of subtracting the energy of an infinite uniform string is applied, the subtraction being interpreted as the renormalization of the string tension. It is shown that in the case of a homogeneous string this method is completely equivalent to zeta renormalization.

  13. A Note on Tensionless Strings in M-Theory

    OpenAIRE

    Davis, K.

    1996-01-01

    In this article we examine the appearance of tensionless strings in M-Theory. We subsequently interpret these tensionless strings in a String Theory context. In particular, we examine tensionless strings appearing in M-Theory on $S^{1}$, M-Theory on $S^{1} / {\\bf Z}_{2}$, and M-Theory on $T^{2}$; we then interpret the appearance of such strings in a String Theory context. Then we reverse this process and examine the appearance of some tensionless strings in String Theory. Subsequently we inte...

  14. Open strings in the SL(2, R) WZWN model with solution for a rigidly rotating string

    DEFF Research Database (Denmark)

    Lomholt, Michael Andersen; Larsen, A.L.

    2003-01-01

    Boundary conditions and gluing conditions for open strings and D-branes in the SL(2, R) WZWN model, corresponding to AdS , are discussed. Some boundary conditions and gluing conditions previously considered in the literature are shown to be incompatible with the variation principle. We then consi......Boundary conditions and gluing conditions for open strings and D-branes in the SL(2, R) WZWN model, corresponding to AdS , are discussed. Some boundary conditions and gluing conditions previously considered in the literature are shown to be incompatible with the variation principle. We...... then consider open string boundary conditions corresponding to a certain field-dependent gluing condition. This allows us to consider open strings with constant energy and angular momentum. Classically, these open strings naturally generalize the open strings in flat Minkowski space. For rigidly rotating open...

  15. Poisson hierarchy of discrete strings

    International Nuclear Information System (INIS)

    Ioannidou, Theodora; Niemi, Antti J.

    2016-01-01

    The Poisson geometry of a discrete string in three dimensional Euclidean space is investigated. For this the Frenet frames are converted into a spinorial representation, the discrete spinor Frenet equation is interpreted in terms of a transfer matrix formalism, and Poisson brackets are introduced in terms of the spinor components. The construction is then generalised, in a self-similar manner, into an infinite hierarchy of Poisson algebras. As an example, the classical Virasoro (Witt) algebra that determines reparametrisation diffeomorphism along a continuous string, is identified as a particular sub-algebra, in the hierarchy of the discrete string Poisson algebra. - Highlights: • Witt (classical Virasoro) algebra is derived in the case of discrete string. • Infinite dimensional hierarchy of Poisson bracket algebras is constructed for discrete strings. • Spinor representation of discrete Frenet equations is developed.

  16. Basic Concepts of String Theory

    CERN Document Server

    Blumenhagen, Ralph; Theisen, Stefan

    2013-01-01

    The purpose of this book is to thoroughly prepare the reader for research in string theory. It is intended as a textbook in the sense that, starting from the basics, the material is presented in a pedagogical and self-contained fashion. The emphasis is on the world-sheet perspective of closed strings and of open strings ending on D-branes, where two-dimensional conformal field theory is the main tool. Compactifications of string theory, with and without fluxes, and string dualities are also discussed from the space-time point of view, i.e. in geometric language. End-of-chapter references have been added to guide the reader intending to pursue further studies or to start research in the topics covered by this book.

  17. Poisson hierarchy of discrete strings

    Energy Technology Data Exchange (ETDEWEB)

    Ioannidou, Theodora, E-mail: ti3@auth.gr [Faculty of Civil Engineering, School of Engineering, Aristotle University of Thessaloniki, 54249, Thessaloniki (Greece); Niemi, Antti J., E-mail: Antti.Niemi@physics.uu.se [Department of Physics and Astronomy, Uppsala University, P.O. Box 803, S-75108, Uppsala (Sweden); Laboratoire de Mathematiques et Physique Theorique CNRS UMR 6083, Fédération Denis Poisson, Université de Tours, Parc de Grandmont, F37200, Tours (France); Department of Physics, Beijing Institute of Technology, Haidian District, Beijing 100081 (China)

    2016-01-28

    The Poisson geometry of a discrete string in three dimensional Euclidean space is investigated. For this the Frenet frames are converted into a spinorial representation, the discrete spinor Frenet equation is interpreted in terms of a transfer matrix formalism, and Poisson brackets are introduced in terms of the spinor components. The construction is then generalised, in a self-similar manner, into an infinite hierarchy of Poisson algebras. As an example, the classical Virasoro (Witt) algebra that determines reparametrisation diffeomorphism along a continuous string, is identified as a particular sub-algebra, in the hierarchy of the discrete string Poisson algebra. - Highlights: • Witt (classical Virasoro) algebra is derived in the case of discrete string. • Infinite dimensional hierarchy of Poisson bracket algebras is constructed for discrete strings. • Spinor representation of discrete Frenet equations is developed.

  18. Testing string theory at LHC?

    CERN Multimedia

    CERN. Geneva

    2002-01-01

    A theory with such mathematical beauty cannot be wrong: this is one of the main arguments in favour of string theory, which unifies all known physical theories of fundamental interactions in a single coherent description of the universe. But no one has ever observed strings, not even indirectly, nor the space of extra dimensions where they live. However there are good reasons to believe that the 'hidden' dimensions of string theory may be much larger than what we thought in the past and that they may be within experimental reach in the near future - together with the strings themselves. In my talk, I will give an elementary introduction of string theory and describe the main experimental predictions.Organiser(s): Jasper Kirkby / EP DivisionNote: Tea & coffee will be served at 16.00 hrs.

  19. Algebras, lattices and strings 1986

    International Nuclear Information System (INIS)

    Olive, D.

    1987-01-01

    The formulation of the string theory of unified elementary particle interactions in terms of operators in a Fock space is now seen to relate to the representation theory of certain infinite dimensional algebras. This insight has enhanced the understanding of the physical and mathematical theories involved and furthermore has led to applications in other branches of theoretical physics. A brief account of the new results is given here. (orig.)

  20. Collisions of cosmic F- and D-strings

    International Nuclear Information System (INIS)

    Jones, N.

    2004-01-01

    Recent theoretical advances and upcoming experimental measurements make the testing of generic predictions of string theory models of cosmology feasible. Brane anti-brane models of inflation within superstring theory are promising as string theory descriptions of the physics of the early universe. While varied in their construction, these models can have the generic and observable consequence that cosmic strings will be abundant in the early universe. This leads to possible detectable effects in the cosmic microwave background, gravitational wave physics and gravitational lensing. Detailed calculations of cosmic string interactions within string theory are presented, in order to distinguish these cosmic strings from those in more conventional theories; these interaction probabilities can be very different from conventional 4-dimension strings, providing the possibility of experimental tests of string theory. (authors)

  1. Strings and superstrings. Electron linear colliders

    International Nuclear Information System (INIS)

    Alessandrini, V.; Bambade, P.; Binetruy, P.; Kounnas, C.; Le Duff, J.; Schwimmer, A.

    1989-01-01

    Basic string theory; strings in interaction; construction of strings and superstrings in arbitrary space-time dimensions; compactification and phenomenology; linear e+e- colliders; and the Stanford linear collider were discussed [fr

  2. Dynamical evolution of cosmic strings

    International Nuclear Information System (INIS)

    Bouchet, F.R.

    1988-01-01

    The author have studied by means of numerical simulations the dynamical evolution of a network of cosmic strings, both in the radiation and matter era. Our basic conclusion is that a scaling solution exists, i.e., the string energy density evolves as t -2 . This means that the process by which long strings dump their energy into closed loops (which can gravitationally radiate away) is efficient enough to prevent the string domination over other forms of energy. This conclusion does not depend on the initial string energy density, nor on the various numerical parameters. On the other hand, the generated spectrum of loop sizes does depend on the value of our numerical lower cutoff (i.e., the minimum length of loop we allow to be chopped off the network). Furthermore, the network evolution is very different from what was assumed before), namely the creation of a few horizon sized loops per horizon volume and per hubble time, which subsequently fragment into about 10 smaller daughter loops. Rather, many tiny loops are directly cut from the network of infinite strings, and it appears that the only fundamental scale (the horizon) has been lost. This is probably because a fundamental ingredient had been overlooked, namely the kinks. These kinks are created in pairs at each intercommutation, and very rapidly, the long strings appear to be very kinky. Thus the number of long strings per horizon is still of the order of a few, but their total length is fairly large. Furthermore, a large number of kinks favors the formation of small loops, and their sizes might well be governed by the kink density along the long strings. Finally, we computed the two-point correlation function of the loops and found significant differences from the work of Turok

  3. Dynamics of strings between walls

    International Nuclear Information System (INIS)

    Eto, Minoru; Fujimori, Toshiaki; Nagashima, Takayuki; Nitta, Muneto; Ohashi, Keisuke; Sakai, Norisuke

    2009-01-01

    Configurations of vortex strings stretched between or ending on domain walls were previously found to be 1/4 Bogomol'nyi-Prasad-Sommerfield (BPS) states in N=2 supersymmetric gauge theories in 3+1 dimensions. Among zero modes of string positions, the center of mass of strings in each region between two adjacent domain walls is shown to be non-normalizable whereas the rests are normalizable. We study dynamics of vortex strings stretched between separated domain walls by using two methods, the moduli space (geodesic) approximation of full 1/4 BPS states and the charged particle approximation for string end points in the wall effective action. In the first method we explicitly obtain the effective Lagrangian in the strong coupling limit, which is written in terms of hypergeometric functions, and find the 90 deg. scattering for head-on collision. In the second method the domain wall effective action is assumed to be U(1) N gauge theory, and we find a good agreement between two methods for well-separated strings.

  4. Experimental observation of Bethe strings

    Science.gov (United States)

    Wang, Zhe; Wu, Jianda; Yang, Wang; Bera, Anup Kumar; Kamenskyi, Dmytro; Islam, A. T. M. Nazmul; Xu, Shenglong; Law, Joseph Matthew; Lake, Bella; Wu, Congjun; Loidl, Alois

    2018-02-01

    Almost a century ago, string states—complex bound states of magnetic excitations—were predicted to exist in one-dimensional quantum magnets. However, despite many theoretical studies, the experimental realization and identification of string states in a condensed-matter system have yet to be achieved. Here we use high-resolution terahertz spectroscopy to resolve string states in the antiferromagnetic Heisenberg-Ising chain SrCo2V2O8 in strong longitudinal magnetic fields. In the field-induced quantum-critical regime, we identify strings and fractional magnetic excitations that are accurately described by the Bethe ansatz. Close to quantum criticality, the string excitations govern the quantum spin dynamics, whereas the fractional excitations, which are dominant at low energies, reflect the antiferromagnetic quantum fluctuations. Today, Bethe’s result is important not only in the field of quantum magnetism but also more broadly, including in the study of cold atoms and in string theory; hence, we anticipate that our work will shed light on the study of complex many-body systems in general.

  5. Hydroball string sensing system

    International Nuclear Information System (INIS)

    Hurwitz, M.J.; Ekeroth, D.E.; Squarer, D.

    1991-01-01

    This patent describes a hydroball string sensing system for a nuclear reactor having a core containing a fluid at a fluid pressure. It comprises a tube connectable to the nuclear reactor so that the fluid can flow within the tube at a fluid pressure that is substantially the same as the fluid pressure of the nuclear reactor core; a hydroball string including - a string member having objects positioned therealong with a specified spacing, the object including a plurality of hydroballs, and bullet members positioned at opposing ends of the string member; first sensor means, positioned outside a first segment of the tube, for sensing one of the objects being positioned within the first segment, and for providing a sensing signal responsive to the sensing of the first sensing means

  6. Field theory of strings

    International Nuclear Information System (INIS)

    Ramond, P.

    1987-01-01

    We review the construction of the free equations of motion for open and closed strings in 26 dimensions, using the methods of the Florida Group. Differing from previous treatments, we argue that the constraint L 0 -anti L 0 =0 should not be imposed on all the fields of the closed string in the gauge invariant formalism; we show that it can be incorporated in the gauge invariant formalism at the price of being unable to extract the equations of motion from a Langrangian. We then describe our purely algebraic method to introduce interactions, which works equally well for open and closed strings. Quartic interactions are absent except in the Physical Gauge. Finally, we speculate on the role of the measure of the open string path functional. (orig.)

  7. String theory in four dimensions

    CERN Document Server

    1988-01-01

    ``String Theory in Four Dimensions'' contains a representative collection of papers dealing with various aspects of string phenomenology, including compactifications on smooth manifolds and more general conformal field theories. Together with the lucid introduction by M. Dine, this material gives the reader a good working knowledge of our present ideas for connecting string theory to nature.

  8. One-loop masses of open-string scalar fields in string theory

    International Nuclear Information System (INIS)

    Kitazawa, Noriaki

    2008-01-01

    In phenomenological models with D-branes, there are in general open-string massless scalar fields, in addition to closed-string massless moduli fields corresponding to the compactification. It is interesting to focus on the fate of such scalar fields in models with broken supersymmetry, because no symmetry forbids their masses. The one-loop effect may give non-zero masses to them, and in some cases mass squared may become negative, which means the radiative gauge symmetry breaking. In this article we investigate and propose a simple method for calculating the one-loop corrections using the boundary state formalism. There are two categories of massless open-string scalar fields. One consists the gauge potential fields corresponding to compactified directions, which can be understood as scalar fields in uncompactified space-time (related with Wilson line degrees of freedom). The other consists 'gauge potential fields' corresponding to transverse directions of D-brane, which emerge as scalar fields in D-brane world-volume (related with brane moduli fields). The D-brane boundary states with constant backgrounds of these scalar fields are constructed, and one-loop scalar masses are calculated in the closed string picture. Explicit calculations are given in the following four concrete models: one D25-brane with a circle compactification in bosonic string theory, one D9-brane with a circle compactification in superstring theory, D3-branes at a supersymmetric C 3 /Z 3 orbifold singularity, and a model of brane supersymmetry breaking with D3-branes and anti-D7-branes at a supersymmetric C 3 /Z 3 orbifold singularity. We show that the sign of the mass squared has a strong correlation with the sign of the related open-string one-loop vacuum amplitude.

  9. Application Profile Matching Method for Employees Online Recruitment

    Science.gov (United States)

    Sunarti; Rangga, Rahmadian Y.; Marlim, Yulvia Nora

    2017-12-01

    Employees is one of the determinant factors of company’s success. Thus, reliable human resources are needed to support the survival of the company. This research takes case study at PT. Asuransi Bina Dana Arta, Tbk Pekanbaru Branch. Employee recruitment system at PT. Asuransi Bina Dana Arta, Tbk Pekanbaru Branch still uses manual system as seen in application letter files file so it needs long time to determine accepted and rejected the application. For that it needs to built a system or application that allows companies in determining employees who accepted or rejected easily. Pofile Matching Method is a process of competency assessment that is done by comparing the value of written, psychological and interview test between one applicationt with other. PT. Asuransi Bina Dana Arta, Tbk Pekanbaru branch set the percentage to calculate NCF (Core Factor Value) by 60% and NSF (Secondary Factor Value) by 40%, and set the percentage to calculate the total value of written test by 40%, the total value of psycho test by 30%, and the total value of interview 30%. The final result of this study is to determine the rank or ranking of each applicant based on the greater value which, the greater that score of final result of an application get, the greater the chance of the applicant occupy a position or vacancy. Online Recruitment application uses profile matching method can help employee selection process and employee acceptance decisions quickly. This system can be viewed by directors or owners anywhere because it is online and used for other company branch

  10. Interacting bosonic strings in subcritical dimensions

    International Nuclear Information System (INIS)

    Hwang, S.; Marnelius, R.

    1988-01-01

    Interaction theory for relativistic bosonic string in spacetime dimensions below the critical value 26 is formulated using BRST techniques with an extra scalar field. One-loop zero-point amplitudes for closed strings are modular invariant. For a free scalar field, vertex operators are constructed leading to, e.g., the old dual N-tachyon tree amplitudes in D < 26. The N-tachyon one-loop expressions contain closed string poles for open strings, and are modular invariant for closed strings. However, the threshold cuts are wrong in D < 25. Only for D=25 to the considered vertex operators lead to consistency. (orig.)

  11. A primer on string theory

    CERN Document Server

    Schomerus, Volker

    2017-01-01

    Since its conception in the 1960s, string theory has been hailed as one of the most promising routes we have to unify quantum mechanics and general relativity. This book provides a concise introduction to string theory explaining central concepts, mathematical tools and covering recent developments in physics including compactifications and gauge/string dualities. With string theory being a multidisciplinary field interfacing with high energy physics, mathematics and quantum field theory, this book is ideal for both students with no previous knowledge of the field and scholars from other disciplines who are looking for an introduction to basic concepts.

  12. Splitting strings on integrable backgrounds

    Energy Technology Data Exchange (ETDEWEB)

    Vicedo, Benoit

    2011-05-15

    We use integrability to construct the general classical splitting string solution on R x S{sup 3}. Namely, given any incoming string solution satisfying a necessary self-intersection property at some given instant in time, we use the integrability of the worldsheet {sigma}-model to construct the pair of outgoing strings resulting from a split. The solution for each outgoing string is expressed recursively through a sequence of dressing transformations, the parameters of which are determined by the solutions to Birkhoff factorization problems in an appropriate real form of the loop group of SL{sub 2}(C). (orig.)

  13. T-Duality Group for Open String Theory

    OpenAIRE

    Kajiura, Hiroshige

    2001-01-01

    We study T-duality for open strings on tori $\\T^d$. The general boundary conditions for the open strings are constructed, and it is shown that T-duality group, which preserves the mass spectrum of closed strings, preserves also the mass spectrum of the open strings. The open strings are transformed to those with different boundary conditions by T-duality. We also discuss the T-duality for D-brane mass spectrum, and show that the D-branes and the open strings with both ends on them are transfo...

  14. String Theory Methods for Condensed Matter Physics

    Science.gov (United States)

    Nastase, Horatiu

    2017-09-01

    symmetries and their gravity duals; 33. Finite temperature and black holes; 34. Hot plasma equilibrium thermodynamics: entropy, charge density and chemical potential of strongly coupled theories; 35. Spectral functions and transport properties; 36. Dynamic and nonequilibrium properties of plasmas: electric transport, Langevin diffusion and thermalization via black hole quasi-normal modes; 37. The holographic superconductor; 38. The fluid-gravity correspondence: conformal relativistic fluids from black hole horizons; 39. Nonrelativistic fluids: from Einstein to Navier-Stokes and back; Part IV. Advanced Applications: 40. Fermi gas and liquid in AdS/CFT; 41. Quantum Hall effect from string theory; 42. Quantum critical systems and AdS/CFT; 43. Particle-vortex duality and ABJM vs. AdS4 X CP3 duality; 44. Topology and non-standard statistics from AdS/CFT; 45. DBI scalar model for QGP/black hole hydro- and thermo-dynamics; 46. Holographic entanglement entropy in condensed matter; 47. Holographic insulators; 48. Holographic strange metals and the Kondo problem; References; Index.

  15. Topological vertex, string amplitudes and spectral functions of hyperbolic geometry

    Energy Technology Data Exchange (ETDEWEB)

    Guimaraes, M.E.X.; Rosa, T.O. [Universidade Federal Fluminense, Instituto de Fisica, Av. Gal. Milton Tavares de Souza, s/n, CEP 24210-346, Niteroi, RJ (Brazil); Luna, R.M. [Universidade Estadual de Londrina, Departamento de Fisica, Caixa Postal 6001, Londrina, Parana (Brazil)

    2014-05-15

    We discuss the homological aspects of the connection between quantum string generating function and the formal power series associated to the dimensions of chains and homologies of suitable Lie algebras. Our analysis can be considered as a new straightforward application of the machinery of modular forms and spectral functions (with values in the congruence subgroup of SL(2,Z)) to the partition functions of Lagrangian branes, refined vertex and open string partition functions, represented by means of formal power series that encode Lie algebra properties. The common feature in our examples lies in the modular properties of the characters of certain representations of the pertinent affine Lie algebras and in the role of Selberg-type spectral functions of a hyperbolic three-geometry associated with q-series in the computation of the string amplitudes. (orig.)

  16. Introduction to field theory of strings

    International Nuclear Information System (INIS)

    Kikkawa, K.

    1987-01-01

    The field theory of bosonic string is reviewed. First, theory is treated in a light-cone gauge. After a brief survey of the first quantized theory of free string, the second quantization is discussed. All possible interactions of strings are introduced based on a smoothness condition of work sheets swept out by strings. Perturbation theory is developed. Finally a possible way to the manifest covariant formalism is discussed

  17. Magnetically-enhanced open string pair production

    Science.gov (United States)

    Lu, J. X.

    2017-12-01

    We consider the stringy interaction between two parallel stacks of D3 branes placed at a separation. Each stack of D3 branes in a similar fashion carry an electric flux and a magnetic flux with the two sharing no common field strength index. The interaction amplitude has an imaginary part, giving rise to the Schwinger-like pair production of open strings. We find a significantly enhanced rate of this production when the two electric fluxes are almost identical and the brane separation is on the order of string scale. This enhancement will be largest if the two magnetic fluxes are opposite in direction. This novel enhancement results from the interplay of the non-perturbative Schwinger-type pair production due to the electric flux and the stringy tachyon due to the magnetic flux, and may have realistic physical applications.

  18. Windings of twisted strings

    Science.gov (United States)

    Casali, Eduardo; Tourkine, Piotr

    2018-03-01

    Twistor string models have been known for more than a decade now but have come back under the spotlight recently with the advent of the scattering equation formalism which has greatly generalized the scope of these models. A striking ubiquitous feature of these models has always been that, contrary to usual string theory, they do not admit vibrational modes and thus describe only conventional field theory. In this paper we report on the surprising discovery of a whole new sector of one of these theories which we call "twisted strings," when spacetime has compact directions. We find that the spectrum is enhanced from a finite number of states to an infinite number of interacting higher spin massive states. We describe both bosonic and world sheet supersymmetric models, their spectra and scattering amplitudes. These models have distinctive features of both string and field theory, for example they are invariant under stringy T-duality but have the high energy behavior typical of field theory. Therefore they describe a new kind of field theories in target space, sitting on their own halfway between string and field theory.

  19. String-theoretic breakdown of effective field theory near black hole horizons

    Science.gov (United States)

    Dodelson, Matthew; Silverstein, Eva

    2017-09-01

    We investigate the validity of the equivalence principle near horizons in string theory, analyzing the breakdown of effective field theory caused by longitudinal string spreading effects. An experiment is set up where a detector is thrown into a black hole a long time after an early infalling string. Light cone gauge calculations, taken at face value, indicate a detectable level of root-mean-square longitudinal spreading of the initial string as measured by the late infaller. This results from the large relative boost between the string and detector in the near-horizon region, which develops automatically despite their modest initial energies outside the black hole and the weak curvature in the geometry. We subject this scenario to basic consistency checks, using these to obtain a relatively conservative criterion for its detectability. In a companion paper, we exhibit longitudinal nonlocality in well-defined gauge-invariant S-matrix calculations, obtaining results consistent with the predicted spreading albeit not in a direct analog of the black hole process. We discuss applications of this effect to the firewall paradox, and estimate the time and distance scales it predicts for new physics near black hole and cosmological horizons.

  20. Covariant N-string amplitude

    International Nuclear Information System (INIS)

    Di Vecchia, P.; Sciuto, S.; Nakayama, R.; Petersen, J.L.; Sidenius, J.R.

    1986-11-01

    The BRST-invariant N-Reggeon vertex (for the bosonic string) previously given by us in the operator formulation is considered in more detail. In particular we present a direct derivation from the string path integral. Several crucial symmetry properties found a posteriori before, become a priori clearer in this formulation. A number of delicate points related to zero modes, cut off procedures and normal ordering prescriptions are treated in some detail. The old technique of letting the string field acquire a small dimension ε/2 → 0 + is found especially elegant. (orig.)

  1. A disintegrating cosmic string

    International Nuclear Information System (INIS)

    Griffiths, J B; Docherty, P

    2002-01-01

    We present a simple sandwich gravitational wave of the Robinson-Trautman family. This is interpreted as representing a shock wave with a spherical wavefront which propagates into a Minkowski background minus a wedge (i.e. the background contains a cosmic string). The deficit angle (the tension) of the string decreases through the gravitational wave, which then ceases. This leaves an expanding spherical region of Minkowski space behind it. The decay of the cosmic string over a finite interval of retarded time may be considered to generate the gravitational wave. (letter to the editor)

  2. Fast Arc-Annotated Subsequence Matching in Linear Space

    DEFF Research Database (Denmark)

    Bille, Philip; Gørtz, Inge Li

    2012-01-01

    for investigating the function of RNA molecules. Gramm et al. (ACM Trans. Algorithms 2(1): 44-65, 2006) gave an algorithm for this problem using O(nm) time and space, where m and n are the lengths of P and Q, respectively. In this paper we present a new algorithm using O(nm) time and O(n+m) space, thereby matching......-annotated strings. © 2010 Springer Science+Business Media, LLC....

  3. Emergence of Fresnel diffraction zones in gravitational lensing by a cosmic string

    Energy Technology Data Exchange (ETDEWEB)

    Fernández-Núñez, Isabel [Departament de Física Quàntica i Astrofísica, Facultat de Física, Universitat de Barcelona, Martí i Franquès 1, E-08028 Barcelona (Spain); Institut de Ciències del Cosmos (ICCUB), Facultat de Física, Universitat de Barcelona, Martí i Franquès 1, E-08028 Barcelona (Spain); Bulashenko, Oleg, E-mail: oleg.bulashenko@ub.edu [Departament de Física Quàntica i Astrofísica, Facultat de Física, Universitat de Barcelona, Martí i Franquès 1, E-08028 Barcelona (Spain)

    2017-06-09

    The possibility to detect cosmic strings – topological defects of early Universe, by means of wave effects in gravitational lensing is discussed. To find the optimal observation conditions, we define the hyperbolic-shaped Fresnel observation zones associated with the diffraction maxima and analyse the frequency patterns of wave amplification corresponding to different alignments. In particular, we show that diffraction of gravitational waves by the string may lead to significant amplification at cosmological distances. The wave properties we found are quite different from what one would expect, for instance, from light scattered off a thin wire or slit, since a cosmic string, as a topological defect, gives no shadow at all. - Highlights: • Interference and diffraction of gravitational waves by a cosmic string are studied. • Uniform asymptotic theory of diffraction is applied for a finite distance source. • Hyperbolic-shaped Fresnel observation zones associated with maxima of diffraction. • Frequency patterns modulated by diffraction for different string alignments are given. • The method is applicable to condensed-matter defects and other types of waves.

  4. The Effect of String Tension Variation on the Perceived Pitch of a Classical Guitar

    Directory of Open Access Journals (Sweden)

    Wanda Jadwiga Lewis

    2014-09-01

    Full Text Available Actual motion of a vibrating guitar string is a superposition of many possible shapes (modes in which it could vibrate. Each of these modes has a corresponding frequency, and the lowest frequency is associated with a shape idealised as a single wave, referred to as the fundamental mode. The other contributing modes, each with their own progressively higher frequency, are referred to as overtones, or harmonics. By attaching a string to a medium (a soundboard capable of a response to the vibrating string, sound waves are generated. The sound heard is dominated by the fundamental mode, ‘coloured’ by contributions from the overtones, as explained by the classical theory of vibration. The classical theory, however, assumes that the string tension remains constant during vibration, and this cannot be strictly true; when considering just the fundamental mode, string tension will reach two maximum changes, as it oscillates up and down. These changes, occurring twice during the fundamental period match the frequency of the octave higher, 1st overtone. It is therefore plausible to think that the changing tension effect, through increased force on the bridge and, therefore, greater soundboard deflection, could be amplifying the colouring effect of (at least the 1st overtone. In this paper, we examine the possible influence of string tension variation on tonal response of a classical guitar. We use a perturbation model based on the classical result for a string in general vibration in conjunction with a novel method of assessment of plucking force that incorporates the engineering concept of geometric stiffness, to assess the magnitude of the normal force exerted by the string on the bridge. The results of our model show that the effect of tension variation is significantly smaller than that due to the installed initial static tension, and affects predominantly the force contribution arising from the fundamental mode. We, therefore, conclude that string

  5. Remarks on entanglement entropy in string theory

    Science.gov (United States)

    Balasubramanian, Vijay; Parrikar, Onkar

    2018-03-01

    Entanglement entropy for spatial subregions is difficult to define in string theory because of the extended nature of strings. Here we propose a definition for bosonic open strings using the framework of string field theory. The key difference (compared to ordinary quantum field theory) is that the subregion is chosen inside a Cauchy surface in the "space of open string configurations." We first present a simple calculation of this entanglement entropy in free light-cone string field theory, ignoring subtleties related to the factorization of the Hilbert space. We reproduce the answer expected from an effective field theory point of view, namely a sum over the one-loop entanglement entropies corresponding to all the particle-excitations of the string, and further show that the full string theory regulates ultraviolet divergences in the entanglement entropy. We then revisit the question of factorization of the Hilbert space by analyzing the covariant phase-space associated with a subregion in Witten's covariant string field theory. We show that the pure gauge (i.e., BRST exact) modes in the string field become dynamical at the entanglement cut. Thus, a proper definition of the entropy must involve an extended Hilbert space, with new stringy edge modes localized at the entanglement cut.

  6. Is the string theory doomed?

    International Nuclear Information System (INIS)

    Le Meur, H.; Daninos, F.; Bachas, C.

    2007-01-01

    Since its beginning, in the sixties, the string theory has succeeded in overcoming a lot of theoretical difficulties but now the complete absence of experimental validation entertains doubts about its ability to represent the real world and questions its hegemony in today's theoretical physics. Other space-time theories like the twistors, or the non-commutative geometry, or the loop quantum gravity, or the causal dynamics triangulation might begin receiving more attention. Despite all that, the string theory can be given credit for 4 achievements. First, the string theory has provided a consistent quantum description of gravity. Secondly, the string theory has built a theoretical frame that has allowed the unification of the 4 basic interactions. Thirdly, the string theory applied to astrophysics issues has demonstrated that the evaporation of a black hole does not necessarily lead to a loss of information which comforts the universality of the conservation of the quantity of information in any system and as a consequence put a fatal blow to the so-called paradox observed in black holes. Fourthly, the string theory has given a new and original meaning on the true nature of space-time. (A.C.)

  7. Introduction to string theory

    CERN Multimedia

    CERN. Geneva. Audiovisual Unit

    2002-01-01

    I will present a simple and non-technical overview of string theory, aimed for non-experts who like to get some idea what string theory is about. Besides introductory material, I intend to cover also some of the more recent developments.

  8. Unification of string dualities

    International Nuclear Information System (INIS)

    Sen, A.

    1997-01-01

    We argue that all conjectured dualities involving various string, M- and F-theory compactifications can be 'derived' from the conjectured duality between type I and SO(32) heterotic string theory, T-dualities and the definition of M-and F-theories. (orig.)

  9. Exploring the web of heterotic string theories using anomalies

    International Nuclear Information System (INIS)

    Ruehle, Fabian

    2013-07-01

    We investigate how anomalies can be used to infer relations among different descriptions of heterotic string theory. Starting from the observation that the construction mechanism of heterotic orbifold compactifications considered up to now prevents them from being resolved into fully smooth Calabi-Yau compactification manifolds, we use a new mechanism to obtain an orbifold which does not suffer from the aforementioned limitations. We explain in general how to resolve orbifolds into smooth Calabi-Yau using toric geometry and gauged linear sigma models. The latter allow for studying the theory in various other regions of the string moduli space as well, which unveils interesting intermediate geometries. By following anomalies through the different regimes, we can match the orbifold theories to their smooth Calabi-Yau counterparts. In the process, we investigate discrete R and non-R orbifold symmetries and propose a mechanism for studying their fate in other regions of the moduli space. Finally, we introduce a novel anomaly cancelation mechanism in gauged linear sigma models, which manifests itself in target space as a description of compactification geometries with torsion and Neveu-Schwarz five branes.

  10. Exploring the web of heterotic string theories using anomalies

    Energy Technology Data Exchange (ETDEWEB)

    Ruehle, Fabian

    2013-07-15

    We investigate how anomalies can be used to infer relations among different descriptions of heterotic string theory. Starting from the observation that the construction mechanism of heterotic orbifold compactifications considered up to now prevents them from being resolved into fully smooth Calabi-Yau compactification manifolds, we use a new mechanism to obtain an orbifold which does not suffer from the aforementioned limitations. We explain in general how to resolve orbifolds into smooth Calabi-Yau using toric geometry and gauged linear sigma models. The latter allow for studying the theory in various other regions of the string moduli space as well, which unveils interesting intermediate geometries. By following anomalies through the different regimes, we can match the orbifold theories to their smooth Calabi-Yau counterparts. In the process, we investigate discrete R and non-R orbifold symmetries and propose a mechanism for studying their fate in other regions of the moduli space. Finally, we introduce a novel anomaly cancelation mechanism in gauged linear sigma models, which manifests itself in target space as a description of compactification geometries with torsion and Neveu-Schwarz five branes.

  11. Hosotani model in closed string theory

    International Nuclear Information System (INIS)

    Shiraishi, Kiyoshi.

    1988-11-01

    Hosotani mechanism in the closed string theory with current algebra symmetry is described by the (old covariant) operator method. We compare the gauge symmetry breaking mechanism in a string theory which has SU(2) symmetry with the one in an equivalent compactified closed string theory. We also investigate the difference between Hosotani mechanism and Higgs mechanism in closed string theories by calculation of a fourpoint amplitude of 'Higgs' bosons at tree level. (author)

  12. String breaking with Wilson loops?

    CERN Document Server

    Kratochvila, S; Kratochvila, Slavo; Forcrand, Philippe de

    2003-01-01

    A convincing, uncontroversial observation of string breaking, when the static potential is extracted from Wilson loops only, is still missing. This failure can be understood if the overlap of the Wilson loop with the broken string is exponentially small. In that case, the broken string ground state will only be seen if the Wilson loop is long enough. Our preliminary results show string breaking in the context of the 3d SU(2) adjoint static potential, using the L\\"uscher-Weisz exponential variance reduction approach. As a by-product, we measure the fundamental SU(2) static potential with improved accuracy and see clear deviations from Casimir scaling.

  13. Architectures and representations for string transduction

    NARCIS (Netherlands)

    Chrupala, Grzegorz

    2015-01-01

    String transduction problems are ubiquitous in natural language processing: they include transliteration, grapheme-to-phoneme conversion, text normalization and translation. String transduction can be reduced to the simpler problems of sequence labeling by expressing the target string as a sequence

  14. Introduction to strings and superstrings

    International Nuclear Information System (INIS)

    Traubenberg, M.R. de.

    1988-01-01

    We discuss the main features on the formulation of string theory that, in a primitive level, describe the hadronic phenomenon of duality. We also study an extension of the models of closed and strings with spin. Then, by using supersymmetry, it is formulated the theory of superstrings and heterotic strings with the aim of unify the fundamental interactions and matter. (M.W.O.) [pt

  15. Singleton strings

    International Nuclear Information System (INIS)

    Engquist, J.; Sundell, P.; Tamassia, L.

    2007-01-01

    The group theoretical structure underlying physics in anti de Sitter (AdS) spacetime is intrinsically different with respect to the flat case, due to the presence of special ultra-short representations, named singletons, that do not admit a flat space limit. The purpose of this collaboration is to exploit this feature in the study of string and brane dynamics in AdS spacetime, in particular while trying to establish a connection between String Theory in AdS backgrounds (in the tensionless limit) and Higher-Spin Gauge Theory. (orig.)

  16. Aspects of some dualities in string theory

    Science.gov (United States)

    Kim, Bom Soo

    AdS/CFT correspondence in string theory has changed landscape of the theoretical physics. Through this celebrated duality between gravity theory and field theory, one can investigate analytically strongly coupled gauge theories such as Quantum Chromodynamics (QCD) in terms of weakly coupled string theory such as supergravity theory and vice versa. In the first part of this thesis we used this duality to construct a new type of nonlocal field theory, called Puff Field Theory, in terms of D3 branes in type IIB string theory with a geometric twist. In addition to the strong-weak duality of AdS/CFT, there also exists a weak-weak duality, called Twistor String Theory. Twistor technique is successfully used to calculate the SYM scattering amplitude in an elegant fashion. Yet, the progress in the string theory side was hindered by a non-unitary conformal gravity. We extend the Twistor string theory by introducing mass terms, in the second part of the thesis. A chiral mass term is identified as a vacuum expectation value of a conformal supergravity field and is tied with the breaking of the conformal symmetry of gravity. As a prime candidate for a quantum theory of gravity, string theory revealed many promising successes such as counting the number of microstates in supersymmetric Black Holes thermodynamics and resolution of timelike and null singularities, to name a few. Yet, the fundamental string and M-theroy formulations are not yet available. Various string theories without gravity, such as Non-Commutative Open String (NCOS) and Open Membrane (OM) theories, are very nice playground to investigate the fundamental structure of string and M-theory without the complication of gravity. In the last part of the thesis, simpler Non-Relativistic String Theories are constructed and investigated. One important motivation for those theories is related to the connection between Non-Relativistic String Theories and Non-critical String Theories through the bosonization of betagamma

  17. Method of recovering deeply submerged support strings of a self-lifting floating unit from the ground

    Energy Technology Data Exchange (ETDEWEB)

    Dzhafarov, A M; Leybenzon, S R; Sarkisov, V G

    1982-01-01

    A method is proposed for recovering from the ground deeply submerged strings of self-lifting floating unit consisting of application of vertical forces through a lifter to the support string from surplus buoyancy of the housing submerged into the water. It is distinguished by the fact that in order to improve reliability and to expand the area of operation in water areas with deep occurrence of the bearing ground, submersion of the housing is done with its inclination. This applies to the support string or a group of support strings a permissible momentum, after which water ballast is used towards the housing opposite the inclined, with simultaneous preservation of the permissible moment applied to the support string or group of support strings, and the permissible momentum is determined from the formula-..mu.. = ..sqrt..theta/sup 2/ + /PSI//sup 2//A where M--momentum permitted according to the conditions of strength of the support string; /PSI/--angle of trim; /ETA/-- angle of list; A--coefficient of flexibility of the string submerged into the ground.

  18. String cosmology modern string theory concepts from the cosmic structure

    CERN Document Server

    2009-01-01

    The field of string cosmology has matured considerably over the past few years, attracting many new adherents to this multidisciplinary Field. This book fills a critical gap by bringing together strains of current research into one single volume. The resulting collection of selected articles presents the latest, ongoing results from renowned experts currently working in the field. This offers the possibility for practitioners to become conversant with many different aspects of string cosmology

  19. Semilocal and electroweak strings

    NARCIS (Netherlands)

    Achucarro, A; Vachaspati, T

    We review a class of non-topological defects in the standard electroweak model, and their implications. Starting with the semilocal string, which provides a counterexample to many well-known properties of topological vortices, we discuss electroweak strings and their stability with and without

  20. Assessing Correlation of Residency Applicants' Interview Dates With Likelihood of Matching.

    Science.gov (United States)

    Avasarala, Sameer; Thompson, Elizabeth; Whitehouse, Sarah; Drake, Sean

    2018-02-01

    This study aimed to determine whether the timing of an interview relative to the recruitment season was associated with being ranked or matched at an academic medical center. Eleven specialties (anesthesiology, diagnostic radiology, emergency medicine, family medicine, general surgery, internal medicine, neurology, neurosurgery, obstetrics-gynecology, orthopedic surgery, and psychiatry) that participated in the National Resident Matching Program were included in the study. Each program's total number of interview days during the October 2014-January 2015 interview season were divided equally into three interview time periods. The Cochran-Armitage trend test was used to evaluate associations among the three interview time periods (early, middle, and late) and interviewee outcomes (ranked or matched at our institution) for all subjects combined for each of the 11 programs and for specialty groups (medical, surgical, and hospital). Of 1034 applicants included in the analyses, 60% were men. Most were graduated from US medical schools (59.8%; a total of 103 applicants obtained first-year training positions through the Match [95.4% combined fill rate]). Twenty-nine interviewed early, 38 in the middle, and 36 in the late period ( P = 0.3877). A total of 864 applicants were ranked by 1 of the 11 residency programs at the study site: 267 in the early period, 319 in the middle, and 278 in the late period ( P = 0.4184). Being ranked in association with specialty classification also showed no significant differences. Interview timing had no relation to the likelihood of a match or being ranked by 1 of the 11 programs studied at our institution. These findings help dispel misconceptions about the importance of the interview date for a successful match.

  1. Differential geometry of groups in string theory

    International Nuclear Information System (INIS)

    Schmidke, W.B. Jr.

    1990-09-01

    Techniques from differential geometry and group theory are applied to two topics from string theory. The first topic studied is quantum groups, with the example of GL (1|1). The quantum group GL q (1|1) is introduced, and an exponential description is derived. The algebra and coproduct are determined using the invariant differential calculus method introduced by Woronowicz and generalized by Wess and Zumino. An invariant calculus is also introduced on the quantum superplane, and a representation of the algebra of GL q (1|1) in terms of the super-plane coordinates is constructed. The second topic follows the approach to string theory introduced by Bowick and Rajeev. Here the ghost contribution to the anomaly of the energy-momentum tensor is calculated as the Ricci curvature of the Kaehler quotient space Diff(S 1 )/S 1 . We discuss general Kaehler quotient spaces and derive an expression for their Ricci curvatures. Application is made to the string and superstring diffeomorphism groups, considering all possible choices of subgroup. The formalism is extended to associated holomorphic vector bundles, where the Ricci curvature corresponds to the anomaly for different ghost sea levels. 26 refs

  2. Nonrelativistic closed string theory

    International Nuclear Information System (INIS)

    Gomis, Jaume; Ooguri, Hirosi

    2001-01-01

    We construct a Galilean invariant nongravitational closed string theory whose excitations satisfy a nonrelativistic dispersion relation. This theory can be obtained by taking a consistent low energy limit of any of the conventional string theories, including the heterotic string. We give a finite first order worldsheet Hamiltonian for this theory and show that this string theory has a sensible perturbative expansion, interesting high energy behavior of scattering amplitudes and a Hagedorn transition of the thermal ensemble. The strong coupling duals of the Galilean superstring theories are considered and are shown to be described by an eleven-dimensional Galilean invariant theory of light membrane fluctuations. A new class of Galilean invariant nongravitational theories of light-brane excitations are obtained. We exhibit dual formulations of the strong coupling limits of these Galilean invariant theories and show that they exhibit many of the conventional dualities of M theory in a nonrelativistic setting

  3. Strings draw theorists together

    International Nuclear Information System (INIS)

    Green, Michael

    2000-01-01

    Theorists are confident that they are closer than ever to finding a quantum theory that unites gravity with the three other fundamental forces in nature. Many of the leading figures in the world of string theory met at the California Institute of Technology in January to discuss recent progress in the field and to reflect on the state of the theory. The enthusiastic mood of the gathering was based on the fact that string theory provides an elegant framework for a unified theory of all the forces and particles in nature, and also gives a consistent quantum-mechanical description of general relativity. String theory, and more precisely superstring theory, describes the assortment of elementary particles such as quarks and leptons, and the gauge bosons responsible for mediating forces in a unified manner as different modes of vibration of a single extended string. This version of the theory also embodies supersymmetry a conjectured symmetry that unifies fermions and bosons. Furthermore, the fact that the string has a fundamental length scale - the ''string length'' - apparently cures the short-distance problems of uniting general relativity with quantum theory. The main problem with the early formulations of superstring theory was that they emphasized the ''perturbative'' point of view, an approximation that describes string-like quantum-mechanical particles moving through classical (that is non quantum-mechanical) space-time. However, very general arguments require that any quantum theory of gravity should also describe space-time geometry in a quantum-mechanical manner. The classical geometry of space-time should then emerge as an approximate description at distance scales much larger than the so-called Planck scale of 10 -33 m. This requires an understanding of the theory beyond the perturbative approximation. It is the quest for this more fundamental description of string theory that has provided the main challenge for string theorists over the past decade. Much

  4. Generalized canonical quantization and background fields equations of motion in the Bosonic string theory

    International Nuclear Information System (INIS)

    Buchbinder, I.L.; Lyakhovich, S.L.; Pershin, V.D.; Fradkin, E.S.

    1991-01-01

    At present, superstring theory is the only candidate to be a unified theory of all fundamental interactions. For this reason, the various aspects of the string theory have been attracting great attention. String theory has a nontrivial gauge symmetry and therefore is an interesting object from the viewpoint of application of general quantization methods. This paper discusses the bosonic string theory. The purpose of this paper is a consistent operator quantization of the theory with the action. The natural basis for it is provided by the method of the generalized canonical quantization

  5. Boundary terms in Nambu-Goto string action

    OpenAIRE

    Hadasz, Leszek; Wegrzyn, Pawel

    1994-01-01

    We investigate classical strings defined by the Nambu-Goto action with the boundary term added. We demonstrate that the latter term has a significant bearing on the string dynamics. It is confirmed that new action terms that depend on higher order derivatives of string coordinates cannot be considered as continuous perturbations from the starting string functional. In the case the boundary term reduces to the Gauss-Bonnet term, a stability analysis is performed on the rotating rigid string so...

  6. Charting the Landscape of Supercritical String Theory

    International Nuclear Information System (INIS)

    Hellerman, Simeon; Swanson, Ian

    2007-01-01

    Special solutions of string theory in supercritical dimensions can interpolate in time between theories with different numbers of spacetime dimensions and different amounts of world sheet supersymmetry. These solutions connect supercritical string theories to the more familiar string duality web in ten dimensions and provide a precise link between supersymmetric and purely bosonic string theories. Dimension quenching and c duality appear to be natural concepts in string theory, giving rise to large networks of interconnected theories

  7. Formation of a high intensity low energy positron string

    Science.gov (United States)

    Donets, E. D.; Donets, E. E.; Syresin, E. M.; Itahashi, T.; Dubinov, A. E.

    2004-05-01

    The possibility of a high intensity low energy positron beam production is discussed. The proposed Positron String Trap (PST) is based on the principles and technology of the Electron String Ion Source (ESIS) developed in JINR during the last decade. A linear version of ESIS has been used successfully for the production of intense highly charged ion beams of various elements. Now the Tubular Electron String Ion Source (TESIS) concept is under study and this opens really new promising possibilities in physics and technology. In this report, we discuss the application of the tubular-type trap for the storage of positrons cooled to the cryogenic temperatures of 0.05 meV. It is intended that the positron flux at the energy of 1-5 eV, produced by the external source, is injected into the Tubular Positron Trap which has a similar construction as the TESIS. Then the low energy positrons are captured in the PST Penning trap and are cooled down because of their synchrotron radiation in the strong (5-10 T) applied magnetic field. It is expected that the proposed PST should permit storing and cooling to cryogenic temperature of up to 5×109 positrons. The accumulated cooled positrons can be used further for various physics applications, for example, antihydrogen production.

  8. Formation of a high intensity low energy positron string

    International Nuclear Information System (INIS)

    Donets, E.D.; Donets, E.E.; Syresin, E.M.; Itahashi, T.; Dubinov, A.E.

    2004-01-01

    The possibility of a high intensity low energy positron beam production is discussed. The proposed Positron String Trap (PST) is based on the principles and technology of the Electron String Ion Source (ESIS) developed in JINR during the last decade. A linear version of ESIS has been used successfully for the production of intense highly charged ion beams of various elements. Now the Tubular Electron String Ion Source (TESIS) concept is under study and this opens really new promising possibilities in physics and technology. In this report, we discuss the application of the tubular-type trap for the storage of positrons cooled to the cryogenic temperatures of 0.05 meV. It is intended that the positron flux at the energy of 1-5 eV, produced by the external source, is injected into the Tubular Positron Trap which has a similar construction as the TESIS. Then the low energy positrons are captured in the PST Penning trap and are cooled down because of their synchrotron radiation in the strong (5-10 T) applied magnetic field. It is expected that the proposed PST should permit storing and cooling to cryogenic temperature of up to 5x10 9 positrons. The accumulated cooled positrons can be used further for various physics applications, for example, antihydrogen production

  9. Real-Time Particle Mass Spectrometry Based on Resonant Micro Strings

    DEFF Research Database (Denmark)

    Schmid, Silvan; Dohn, Søren; Boisen, Anja

    2010-01-01

    by measuring the resonant frequency shifts of the first two bending modes. The method has been tested by detecting the mass spectrum of micro particles placed on a micro string. This method enables real-time mass spectrometry necessary for applications such as personal monitoring devices for the assessment......Micro- and nanomechanical resonators are widely being used as mass sensors due to their unprecedented mass sensitivity. We present a simple closed-form expression which allows a fast and quantitative calculation of the position and mass of individual particles placed on a micro or nano string...

  10. A Simple Introduction to Grobner Basis Methods in String Phenomenology

    International Nuclear Information System (INIS)

    Gray, J.

    2011-01-01

    I give an elementary introduction to the key algorithm used in recent applications of computational algebraic geometry to the subject of string phenomenology. I begin with a simple description of the algorithm itself and then give 3 examples of its use in physics. I describe how it can be used to obtain constraints on flux parameters, how it can simplify the equations describing vacua in 4D string models, and lastly how it can be used to compute the vacuum space of the electroweak sector of the MSSM.

  11. Monodromy relations in higher-loop string amplitudes

    Directory of Open Access Journals (Sweden)

    S. Hohenegger

    2017-12-01

    Full Text Available New monodromy relations of loop amplitudes are derived in open string theory. We particularly study N-point (planar and non-planar one-loop amplitudes described by a world-sheet cylinder and derive a set of relations between subamplitudes of different color orderings. Various consistency checks are performed by matching α′-expansions of planar and non-planar amplitudes involving elliptic iterated integrals with the resulting periods giving rise to two sets of multiple elliptic zeta values. The latter refer to the two homology cycles on the once-punctured complex elliptic curve and the monodromy equations provide relations between these two sets of multiple elliptic zeta values. Furthermore, our monodromy relations involve new objects for which we present a tentative interpretation in terms of open string scattering amplitudes in the presence of a non-trivial gauge field flux. Finally, we provide an outlook on how to generalize the new monodromy relations to the non-oriented case and beyond the one-loop level. Comparing a subset of our results with recent findings in the literature we find therein several serious issues related to the structure and significance of monodromy phases and the relevance of missed contributions from contour integrations.

  12. E(lementary) Strings in Six-Dimensional Heterotic F-Theory

    OpenAIRE

    Choi, Kang-Sin; Rey, Soo-Jong

    2017-01-01

    Using E-strings, we can analyze not only six-dimensional superconformal field theories but also probe vacua of non-perturabative heterotic string. We study strings made of D3-branes wrapped on various two-cycles in the global F-theory setup. We claim that E-strings are elementary in the sense that various combinations of E-strings can form M-strings as well as heterotic strings and new kind of strings, called G-strings. Using them, we show that emissions and combinations of heterotic small in...

  13. Differential geometry in string models

    International Nuclear Information System (INIS)

    Alvarez, O.

    1986-01-01

    In this article the author reviews the differential geometric approach to the quantization of strings. A seminal paper demonstrates the connection between the trace anomaly and the critical dimension. The role played by the Faddeev-Popov ghosts has been instrumental in much of the subsequent work on the quantization of strings. This paper discusses the differential geometry of two dimensional surfaces and its importance in the quantization of strings. The path integral quantization approach to strings will be carefully analyzed to determine the correct effective measure for string theories. The choice of measure for the path integral is determined by differential geometric considerations. Once the measure is determined, the manifest diffeomorphism invariance of the theory will have to be broken by using the Faddeev-Popov ansatz. The gauge fixed theory is studied in detail with emphasis on the role of conformal and gravitational anomalies. In the analysis, the path integral formulation of the gauge fixed theory requires summing over all the distinct complex structures on the manifold

  14. Hollow micro string based calorimeter device

    DEFF Research Database (Denmark)

    2014-01-01

    positions so as to form a free released double clamped string in-between said two longitudinally distanced positions said micro-channel string comprising a microfluidic channel having a closed cross section and extending in the longitudinal direction of the hollow string, acoustical means adapted...

  15. Experimenting with string musical instruments

    Science.gov (United States)

    LoPresto, Michael C.

    2012-03-01

    What follows are several investigations involving string musical instruments developed for and used in a Science of Sound & Light course. The experiments make use of a guitar, orchestral string instruments and data collection and graphing software. They are designed to provide students with concrete examples of how mathematical formulae, when used in physics, represent reality that can actually be observed, in this case, the operation of string musical instruments.

  16. The LHC string2 supervision system

    CERN Document Server

    Mayya, Y S; Sicard, Claude Henri

    2002-01-01

    This paper describes the implementation of the supervision system for the LHC Prototype Full-Cell also known as String 2. The supervision application is based on a commercial package targeted to industrial controls, but because of the complexity and the specifics of such a system, integration with custom components is necessary in order to merge the industrial requirements with the specificity of the accelerator controls.

  17. Final Report: "Strings 2014"

    Energy Technology Data Exchange (ETDEWEB)

    Witten, Edward

    2015-10-21

    The Strings 2014 meeting was held at Princeton University June 23-27, 2014, co-sponsored by Princeton University and the Institute for Advanced Study. The goal of the meeting was to provide a stimulating and up-to-date overview of research in string theory and its relations to other areas of physics and mathematics, ranging from geometry to quantum field theory, condensed matter physics, and more. This brief report lists committee members and speakers but contains no scientific information. Note that the talks at Strings 2014 were videotaped and are available on the conference website: http://physics.princeton.edustrings2014/Talk_titles.shtml.

  18. State of otolaryngology match: has competition increased since the "early" match?

    Science.gov (United States)

    Cabrera-Muffly, Cristina; Sheeder, Jeanelle; Abaza, Mona

    2015-05-01

    To examine fluctuations in supply and demand of otolaryngology residency positions after the shift from an "early match" coordinated by the San Francisco match to a "conventional" matching process through the National Residency Matching Program (NRMP). To determine whether competition among otolaryngology residency positions have changed during this time frame. Database analysis. Matching statistics from 1998 to 2013 were obtained for all first-year residency positions through the NRMP. Matching statistics from 1998 to 2005 were obtained for otolaryngology residency positions through the San Francisco match. Univariate analysis was performed, with a P value less than .05 determined as significant. The number of otolaryngology positions and applicants remained proportional to the overall number of positions and applicants in the NRMP match. Otolaryngology applicants per position and the matching rate of all applicants did not change between the 2 time periods studied. The overall match rate of US seniors applying to otolaryngology did not change, while the match rate of non-US seniors decreased significantly following initiation of the conventional match. There was no significant change in United States Medical Licensing Exam step 1 scores or percentage of unfilled otolaryngology residency positions between the 2 time periods. When comparing the early versus conventional otolaryngology match time periods, the only major change was the decreased percentage of matching among non-US senior applicants. Despite a significant shift in match timing after 2006, the supply, demand, and competitiveness of otolaryngology residency positions have not changed significantly. © American Academy of Otolaryngology—Head and Neck Surgery Foundation 2015.

  19. Improved SURF Algorithm and Its Application in Seabed Relief Image Matching

    Directory of Open Access Journals (Sweden)

    Zhang Hong-Mei

    2017-01-01

    Full Text Available The matching based on seabed relief image is widely used in underwater relief matching navigation and target recognition, etc. However, being influenced by various factors, some conventional matching algorithms are difficult to obtain an ideal result in the matching of seabed relief image. SURF(Speeded Up Robust Features algorithm is based on feature points pair to achieve matching, and can get good results in the seabed relief image matching. However, in practical applications, the traditional SURF algorithm is easy to get false matching, especially when the area’s features are similar or not obvious, the problem is more seriously. In order to improve the robustness of the algorithm, this paper proposes an improved matching algorithm, which combines the SURF, and RANSAC (Random Sample Consensus algorithms. The new algorithm integrates the two algorithms advantages, firstly, the SURF algorithm is applied to detect and extract the feature points then to pre-match. Secondly, RANSAC algorithm is utilized to eliminate mismatching points, and then the accurate matching is accomplished with the correct matching points. The experimental results show that the improved algorithm overcomes the mismatching problem effectively and have better precision and faster speed than the traditional SURF algorithm.

  20. Study of interaction of electromagnetic waves with thin rotating cylindrical shell of conductor in vicinity of weakly gravitating string

    International Nuclear Information System (INIS)

    Muminov, A.T.

    2004-01-01

    Full text: As it shown in the work [1,2], interaction of electromagnetic wave with rotating cylindrical shell of conductor leads to an interesting phenomenon of energy transmission from rotating body to the wave. We study influence of the gravitational field of the string on the process of interaction of electromagnetic waves with infinitesimally thin conducting cylindrical shell. Since in the outer space and inside the shell electromagnetic field satisfies source free Maxwell equations we start with constructing the most general solutions of this equation. Then we match the fields on the cylinder with account of boundary conditions on it. Matching the fields gives expressions for reflection factors of cylindrical waves for two cases of polarization. The reflection factors for distinct wave polarizations show the ratio of outgoing energy flux to in going one. Curved cylindrical symmetric space-time with weakly gravitating string-like source is described by static metric: δs 2 = f(r)δt 2 - h(r)(δz 2 + δr 2 ) - l(r)δψ 2 ; f(r) = r ε ; h(r) = r -ε ; l(r) = r 2 /f(r). Which corresponds to low line density of mass ε on the string. The metric is particular case of Lewis metric [3,4] with zero angular momentum of the string and its weak gravity. The boundary value problem for electromagnetic waves interaction with thin conducting rotating cylindrical shell in static cylindrical metric with weakly gravitating string has been solved analytically. It is found that character of dependence of the factors on Ω at ω R<<1 and ΩR<<1 approximation remains the same as in flat space-time ε =0. Analysis of expressions for the reflection factors in frames of considered approximation has been done

  1. String Formatting Considered Harmful for Novice Programmers

    Science.gov (United States)

    Hughes, Michael C.; Jadud, Matthew C.; Rodrigo, Ma. Mercedes T.

    2010-01-01

    In Java, "System.out.printf" and "String.format" consume a specialised kind of string commonly known as a format string. In our study of first-year students at the Ateneo de Manila University, we discovered that format strings present a substantial challenge for novice programmers. Focusing on their first laboratory we found…

  2. Strings and fundamental physics

    International Nuclear Information System (INIS)

    Baumgartl, Marco; Brunner, Ilka; Haack, Michael

    2012-01-01

    The basic idea, simple and revolutionary at the same time, to replace the concept of a point particle with a one-dimensional string, has opened up a whole new field of research. Even today, four decades later, its multifaceted consequences are still not fully conceivable. Up to now string theory has offered a new way to view particles as different excitations of the same fundamental object. It has celebrated success in discovering the graviton in its spectrum, and it has naturally led scientists to posit space-times with more than four dimensions - which in turn has triggered numerous interesting developments in fields as varied as condensed matter physics and pure mathematics. This book collects pedagogical lectures by leading experts in string theory, introducing the non-specialist reader to some of the newest developments in the field. The carefully selected topics are at the cutting edge of research in string theory and include new developments in topological strings, AdS/CFT dualities, as well as newly emerging subfields such as doubled field theory and holography in the hydrodynamic regime. The contributions to this book have been selected and arranged in such a way as to form a self-contained, graduate level textbook. (orig.)

  3. Strings and fundamental physics

    Energy Technology Data Exchange (ETDEWEB)

    Baumgartl, Marco [Hamburg Univ. (Germany). 2. Inst. fuer Theoretische Physik; Brunner, Ilka; Haack, Michael (eds.) [Muenchen Univ. (Germany). Fakultaet fuer Physik

    2012-07-01

    The basic idea, simple and revolutionary at the same time, to replace the concept of a point particle with a one-dimensional string, has opened up a whole new field of research. Even today, four decades later, its multifaceted consequences are still not fully conceivable. Up to now string theory has offered a new way to view particles as different excitations of the same fundamental object. It has celebrated success in discovering the graviton in its spectrum, and it has naturally led scientists to posit space-times with more than four dimensions - which in turn has triggered numerous interesting developments in fields as varied as condensed matter physics and pure mathematics. This book collects pedagogical lectures by leading experts in string theory, introducing the non-specialist reader to some of the newest developments in the field. The carefully selected topics are at the cutting edge of research in string theory and include new developments in topological strings, AdS/CFT dualities, as well as newly emerging subfields such as doubled field theory and holography in the hydrodynamic regime. The contributions to this book have been selected and arranged in such a way as to form a self-contained, graduate level textbook. (orig.)

  4. Spin chains and string theory.

    Science.gov (United States)

    Kruczenski, Martin

    2004-10-15

    Recently, an important test of the anti de Sitter/conformal field theory correspondence has been done using rotating strings with two angular momenta. We show that such a test can be described more generally as the agreement between two actions: one a low energy description of a spin chain appearing in the field theory side, and the other a limit of the string action in AdS5xS5. This gives a map between the mean value of the spin in the boundary theory and the position of the string in the bulk, and shows how a string action can emerge from a gauge theory in the large-N limit.

  5. Cosmic strings in unified gauge theories

    International Nuclear Information System (INIS)

    Everett, A.E.

    1981-01-01

    Some spontaneously broken gauge theories can give rise to stringlike vacuum structures (vortices). It has been pointed out by Vilenkin that in grand unified theories these can be sufficiently massive to have cosmological implications, e.g., in explaining the formation of galaxies. The circumstances in which such structures occur are examined. They do not occur in the simplest grand unified theories, but can occur in some more elaborate models which have been proposed. The cross section for the scattering of elementary particles by strings is estimated. This is used to evaluate the effect of collisions on the dynamics of a collapsing circular string, with particular attention to the question of whether energy dissipation by collision can reduce the rate of formation of black holes by collapsed strings, which may be unacceptably large in models where strings occur. It is found that the effect of collisions is not important in the case of grand unified strings, although it can be important for lighter strings

  6. Matrix String Theory

    CERN Document Server

    Dijkgraaf, R; Verlinde, Herman L

    1997-01-01

    Via compactification on a circle, the matrix model of M-theory proposed by Banks et al suggests a concrete identification between the large N limit of two-dimensional N=8 supersymmetric Yang-Mills theory and type IIA string theory. In this paper we collect evidence that supports this identification. We explicitly identify the perturbative string states and their interactions, and describe the appearance of D-particle and D-membrane states.

  7. Rotating strings in confining AdS/CFT backgrounds

    International Nuclear Information System (INIS)

    Armoni, Adi; Barbon, Jose L.F.; Petkou, Anastasios C.

    2002-01-01

    We study semiclassical rotating strings in AdS/CFT backgrounds that exhibit both confinement and finite-size effects. The energy versus spin dispersion relation for short strings is the expected Regge trajectory behaviour, with the same string tension as is measured by the Wilson loop. Long strings probe the interplay between confinement and finite-size effects. In particular, the dispersion relation for long strings shows a characteristic dependence on the string tension and the finite-size scale. (author)

  8. 2-Dim. gravity and string theory

    International Nuclear Information System (INIS)

    Narain, K.S.

    1991-01-01

    The role of 2-dim. gravity in string theory is discussed. In particular d=25 string theory coupled to 2-d. gravity is described and shown to give rise to the physics of the usual 26-dim. string theory (where one does not quantise 2-d. gravity. (orig.)

  9. Sa’Unine String Orchestra, Orkes Geseknya Indonesia

    Directory of Open Access Journals (Sweden)

    Ranti - Rachmawanti

    2012-04-01

    Full Text Available ABSTRACT   This article explains the result of Sa’Unine String Orchestra as one of Indonesian orchestras in popular culture. Main idea of this research is to uncover and describe the characteristic, func- tion, and role of Sa’Unine String Orchestra within the popular culture in Indonesia. This research used qualitative method with ethnographical approaches to identify all facts that discovered during research. The conclusions of this research show that Sa’Unine String Orchestra moves in two ways, there are; the idealism which had a vision to create a real Indonesian string orchestra and a part of music industry. At the end, these two ways are connected to each other because of the earnings of those. Music industry becomes a support factor which create the idealism of Sa’Unine String Or- chestra to be an Indonesian String Orchestra.   Keywords: String Orchestra, Music, Popular Culture.

  10. On background-independent open-string field theory

    International Nuclear Information System (INIS)

    Witten, E.

    1992-01-01

    A framework for background-independent open-string field theory is proposed. The approach involves using the Batalin-Vilkovisky formalism, in a way suggested by recent developments in closed-string field theory, to implicitly define a gauge-invariant Lagrangian in a hypothetical ''space of all open-string world-sheet theories.'' It is built into the formalism that classical solutions of the string field theory are Becchi-Rouet-Stora-Tyutin- (BRST-) invariant open-string world-sheet theories and that, when expanding around a classical solution, the infinitesimal gauge transformations are generated by the world-sheet BRST operator

  11. Pure spinor formalism as an N = 2 topological string

    International Nuclear Information System (INIS)

    Berkovits, Nathan

    2005-01-01

    Following suggestions of Nekrasov and Siegel, a non-minimal set of fields are added to the pure spinor formalism for the superstring. Twisted c-circumflex = 3 N = 2 generators are then constructed where the pure spinor BRST operator is the fermionic spin-one generator, and the formalism is interpreted as a critical topological string. Three applications of this topological string theory include the super-Poincare covariant computation of multiloop superstring amplitudes without picture-changing operators, the construction of a cubic open superstring field theory without contact-term problems, and a new four-dimensional version of the pure spinor formalism which computes F-terms in the spacetime action

  12. Deformation of the cubic open string field theory

    Energy Technology Data Exchange (ETDEWEB)

    Lee, Taejin, E-mail: taejin@kangwon.ac.kr

    2017-05-10

    We study a consistent deformation of the cubic open bosonic string theory in such a way that the non-planar world sheet diagrams of the perturbative string theory are mapped onto their equivalent planar diagrams of the light-cone string field theory with some length parameters fixed. An explicit evaluation of the cubic string vertex in the zero-slope limit yields the correct relationship between the string coupling constant and the Yang–Mills coupling constant. The deformed cubic open string field theory is shown to produce the non-Abelian Yang–Mills action in the zero-slope limit if it is defined on multiple D-branes. Applying the consistent deformation systematically to multi-string world sheet diagrams, we may be able to calculate scattering amplitudes with an arbitrary number of external open strings.

  13. Deformation of the cubic open string field theory

    International Nuclear Information System (INIS)

    Lee, Taejin

    2017-01-01

    We study a consistent deformation of the cubic open bosonic string theory in such a way that the non-planar world sheet diagrams of the perturbative string theory are mapped onto their equivalent planar diagrams of the light-cone string field theory with some length parameters fixed. An explicit evaluation of the cubic string vertex in the zero-slope limit yields the correct relationship between the string coupling constant and the Yang–Mills coupling constant. The deformed cubic open string field theory is shown to produce the non-Abelian Yang–Mills action in the zero-slope limit if it is defined on multiple D-branes. Applying the consistent deformation systematically to multi-string world sheet diagrams, we may be able to calculate scattering amplitudes with an arbitrary number of external open strings.

  14. Deformation of the cubic open string field theory

    Directory of Open Access Journals (Sweden)

    Taejin Lee

    2017-05-01

    Full Text Available We study a consistent deformation of the cubic open bosonic string theory in such a way that the non-planar world sheet diagrams of the perturbative string theory are mapped onto their equivalent planar diagrams of the light-cone string field theory with some length parameters fixed. An explicit evaluation of the cubic string vertex in the zero-slope limit yields the correct relationship between the string coupling constant and the Yang–Mills coupling constant. The deformed cubic open string field theory is shown to produce the non-Abelian Yang–Mills action in the zero-slope limit if it is defined on multiple D-branes. Applying the consistent deformation systematically to multi-string world sheet diagrams, we may be able to calculate scattering amplitudes with an arbitrary number of external open strings.

  15. Annotating the structure and components of a nanoparticle formulation using computable string expressions.

    Science.gov (United States)

    Thomas, Dennis G; Chikkagoudar, Satish; Chappell, Alan R; Baker, Nathan A

    2012-12-31

    Nanoparticle formulations that are being developed and tested for various medical applications are typically multi-component systems that vary in their structure, chemical composition, and function. It is difficult to compare and understand the differences between the structural and chemical descriptions of hundreds and thousands of nanoparticle formulations found in text documents. We have developed a string nomenclature to create computable string expressions that identify and enumerate the different high-level types of material parts of a nanoparticle formulation and represent the spatial order of their connectivity to each other. The string expressions are intended to be used as IDs, along with terms that describe a nanoparticle formulation and its material parts, in data sharing documents and nanomaterial research databases. The strings can be parsed and represented as a directed acyclic graph. The nodes of the graph can be used to display the string ID, name and other text descriptions of the nanoparticle formulation or its material part, while the edges represent the connectivity between the material parts with respect to the whole nanoparticle formulation. The different patterns in the string expressions can be searched for and used to compare the structure and chemical components of different nanoparticle formulations. The proposed string nomenclature is extensible and can be applied along with ontology terms to annotate the complete description of nanoparticles formulations.

  16. MHV, CSW and BCFW: field theory structures in string theory amplitudes

    International Nuclear Information System (INIS)

    Boels, Rutger; Larsen, Kasper Jens; Obers, Niels A.; Vonk, Marcel

    2008-01-01

    Motivated by recent progress in calculating field theory amplitudes, we study applications of the basic ideas in these developments to the calculation of amplitudes in string theory. We consider in particular both non-Abelian and Abelian open superstring disk amplitudes in a flat space background, focusing mainly on the four-dimensional case. The basic field theory ideas under consideration split into three separate categories. In the first, we argue that the calculation of α'-corrections to MHV open string disk amplitudes reduces to the determination of certain classes of polynomials. This line of reasoning is then used to determine the α' 3 -correction to the MHV amplitude for all multiplicities. A second line of attack concerns the existence of an analog of CSW rules derived from the Abelian Dirac-Born-Infeld action in four dimensions. We show explicitly that the CSW-like perturbation series of this action is surprisingly trivial: only helicity conserving amplitudes are non-zero. Last but not least, we initiate the study of BCFW on-shell recursion relations in string theory. These should appear very naturally as the UV properties of the string theory are excellent. We show that all open four-point string amplitudes in a flat background at the disk level obey BCFW recursion relations. Based on the naturalness of the proof and some explicit results for the five-point gluon amplitude, it is expected that this pattern persists for all higher point amplitudes and for the closed string.

  17. String moduli inflation. An overview

    Energy Technology Data Exchange (ETDEWEB)

    Cicoli, Michele [Deutsches Elektronen-Synchrotron (DESY), Hamburg (Germany); Quevedo, Fernando [Cambridge Univ. (United Kingdom). DAMTP/CMS; Abdus Salam International Centre for Theoretical Physics, Trieste (Italy)

    2011-06-15

    We present an overview of inflationary models derived from string theory focusing mostly on closed string moduli as inflatons. After a detailed discussion of the {eta}-problem and different approaches to address it, we describe possible ways to obtain a de Sitter vacuum with all closed string moduli stabilised. We then look for inflationary directions and present some of the most promising scenarios where the inflatons are either the real or the imaginary part of Kaehler moduli. We pay particular attention on extracting potential observable implications, showing how most of the scenarios predict negligible gravitational waves and could therefore be ruled out by the Planck satellite. We conclude by briefly mentioning some open challenges in string cosmology beyond deriving just inflation. (orig.)

  18. String moduli inflation. An overview

    International Nuclear Information System (INIS)

    Cicoli, Michele; Quevedo, Fernando

    2011-06-01

    We present an overview of inflationary models derived from string theory focusing mostly on closed string moduli as inflatons. After a detailed discussion of the η-problem and different approaches to address it, we describe possible ways to obtain a de Sitter vacuum with all closed string moduli stabilised. We then look for inflationary directions and present some of the most promising scenarios where the inflatons are either the real or the imaginary part of Kaehler moduli. We pay particular attention on extracting potential observable implications, showing how most of the scenarios predict negligible gravitational waves and could therefore be ruled out by the Planck satellite. We conclude by briefly mentioning some open challenges in string cosmology beyond deriving just inflation. (orig.)

  19. Gauge invariant actions for string models

    International Nuclear Information System (INIS)

    Banks, T.

    1986-06-01

    String models of unified interactions are elegant sets of Feynman rules for the scattering of gravitons, gauge bosons, and a host of massive excitations. The purpose of these lectures is to describe the progress towards a nonperturbative formulation of the theory. Such a formulation should make the geometrical meaning of string theory manifest and explain the many ''miracles'' exhibited by the string Feynman rules. There are some new results on gauge invariant observables, on the cosmological constant, and on the symmetries of interacting string field theory. 49 refs

  20. Joining-Splitting Interaction of Noncritical String

    Science.gov (United States)

    Hadasz, Leszek; Jaskólski, Zbigniew

    The joining-splitting interaction of noncritical bosonic string is analyzed in the light-cone formulation. The Mandelstam method of constructing tree string amplitudes is extended to the bosonic massive string models of the discrete series. The general properties of the Liouville longitudinal excitations which are necessary and sufficient for the Lorentz covariance of the light-cone amplitudes are derived. The results suggest that the covariant and the light-cone approach are equivalent also in the noncritical dimensions. Some aspects of unitarity of interacting noncritical massive string theory are discussed.

  1. Cosmic string induced CMB maps

    International Nuclear Information System (INIS)

    Landriau, M.; Shellard, E. P. S.

    2011-01-01

    We compute maps of CMB temperature fluctuations seeded by cosmic strings using high resolution simulations of cosmic strings in a Friedmann-Robertson-Walker universe. We create full-sky, 18 deg. and 3 deg. CMB maps, including the relevant string contribution at each resolution from before recombination to today. We extract the angular power spectrum from these maps, demonstrating the importance of recombination effects. We briefly discuss the probability density function of the pixel temperatures, their skewness, and kurtosis.

  2. Classical theory of radiating strings

    Science.gov (United States)

    Copeland, Edmund J.; Haws, D.; Hindmarsh, M.

    1990-01-01

    The divergent part of the self force of a radiating string coupled to gravity, an antisymmetric tensor and a dilaton in four dimensions are calculated to first order in classical perturbation theory. While this divergence can be absorbed into a renormalization of the string tension, demanding that both it and the divergence in the energy momentum tensor vanish forces the string to have the couplings of compactified N = 1 D = 10 supergravity. In effect, supersymmetry cures the classical infinities.

  3. Highly excited strings I: Generating function

    Directory of Open Access Journals (Sweden)

    Dimitri P. Skliros

    2017-03-01

    Full Text Available This is the first of a series of detailed papers on string amplitudes with highly excited strings (HES. In the present paper we construct a generating function for string amplitudes with generic HES vertex operators using a fixed-loop momentum formalism. We generalise the proof of the chiral splitting theorem of D'Hoker and Phong to string amplitudes with arbitrary HES vertex operators (with generic KK and winding charges, polarisation tensors and oscillators in general toroidal compactifications E=RD−1,1×TDcr−D (with generic constant Kähler and complex structure target space moduli, background Kaluza–Klein (KK gauge fields and torsion. We adopt a novel approach that does not rely on a “reverse engineering” method to make explicit the loop momenta, thus avoiding a certain ambiguity pointed out in a recent paper by Sen, while also keeping the genus of the worldsheet generic. This approach will also be useful in discussions of quantum gravity and in particular in relation to black holes in string theory, non-locality and breakdown of local effective field theory, as well as in discussions of cosmic superstrings and their phenomenological relevance. We also discuss the manifestation of wave/particle (or rather wave/string duality in string theory.

  4. Exotic configurations for gauge theory strings

    International Nuclear Information System (INIS)

    Yajnik, U.A.

    1987-01-01

    This paper discusses a class of string configurations occuring in nonabelian gauge theories, which are such that a component of the charged scalar field responsible for the string has a nonvanishing expectation value in the core of the string. A systematic procedure is given for setting up the ansatz for such configurations. (orig.)

  5. Test particle trajectories near cosmic strings

    Indian Academy of Sciences (India)

    Gauge strings have their energy concentrated in a very thin tube, the radius of which is of the order of the symmetry- breaking scale whereas the global strings are such that their energy extends to regions far beyond the central core. Strings have an important astrophysical consequence, namely, the double quasar problem ...

  6. Introduction to the theory of strings

    International Nuclear Information System (INIS)

    Peskin, M.E.

    1985-10-01

    These lectures present, from an introductory perspective, some basic aspects of the quantum theory of strings. They treat (1) the kinematics, spectrum, and scattering amplitude of the bosonic string, (2) the spectrum and supersymmetry of Green-Schwarz superstring, and (3) the identification of the underlying gauge invariances of the string theory. 43 refs

  7. The status and future prospects of string theory

    International Nuclear Information System (INIS)

    Gross, D.J.

    1990-01-01

    After a general introduction to the description of the fundamental forces by gauge theories and the difficulties occurring in the attemps of unifying these theories with gravity the reasons for the introduction of string theory are explained. After a description of the construction of a string theory the string theory of gravity is considered. Then the problems of string theory are described. Thereafter elastic scattering in string theory at energies comparable with the Planck mass is considered. Finally some prospects for string theory are discussed. (HSI)

  8. N-loop string amplitude

    International Nuclear Information System (INIS)

    Mandelstam, S.

    1986-06-01

    Work on the derivation of an explicit perturbation series for string and superstring amplitudes is reviewed. The light-cone approach is emphasized, but some work on the Polyakov approach is also mentioned, and the two methods are compared. The calculation of the measure factor is outlined in the interacting-string picture

  9. Regular Expression Matching and Operational Semantics

    Directory of Open Access Journals (Sweden)

    Asiri Rathnayake

    2011-08-01

    Full Text Available Many programming languages and tools, ranging from grep to the Java String library, contain regular expression matchers. Rather than first translating a regular expression into a deterministic finite automaton, such implementations typically match the regular expression on the fly. Thus they can be seen as virtual machines interpreting the regular expression much as if it were a program with some non-deterministic constructs such as the Kleene star. We formalize this implementation technique for regular expression matching using operational semantics. Specifically, we derive a series of abstract machines, moving from the abstract definition of matching to increasingly realistic machines. First a continuation is added to the operational semantics to describe what remains to be matched after the current expression. Next, we represent the expression as a data structure using pointers, which enables redundant searches to be eliminated via testing for pointer equality. From there, we arrive both at Thompson's lockstep construction and a machine that performs some operations in parallel, suitable for implementation on a large number of cores, such as a GPU. We formalize the parallel machine using process algebra and report some preliminary experiments with an implementation on a graphics processor using CUDA.

  10. String theory or field theory?

    International Nuclear Information System (INIS)

    Marshakov, Andrei V

    2002-01-01

    The status of string theory is reviewed, and major recent developments - especially those in going beyond perturbation theory in the string theory and quantum field theory frameworks - are analyzed. This analysis helps better understand the role and place of string theory in the modern picture of the physical world. Even though quantum field theory describes a wide range of experimental phenomena, it is emphasized that there are some insurmountable problems inherent in it - notably the impossibility to formulate the quantum theory of gravity on its basis - which prevent it from being a fundamental physical theory of the world of microscopic distances. It is this task, the creation of such a theory, which string theory, currently far from completion, is expected to solve. In spite of its somewhat vague current form, string theory has already led to a number of serious results and greatly contributed to progress in the understanding of quantum field theory. It is these developments which are our concern in this review. (reviews of topical problems)

  11. Drill-string design for directional wells

    Energy Technology Data Exchange (ETDEWEB)

    Dawson, R; Corbett, K T [Exxon Production Research Co., Houston, TX (USA)

    1983-01-01

    This paper is concerned with predicting the tension and torsion loads on drill strings in directional wells and with adjusting the string design or well plan to provide adequate strength. Drill-string drag is the incremental force that is required to move the pipe up or down in the hole; torque is the moment required to rotate the pipe. Drag forces are usually given relative to the string weight measured with the string roating but not reciprocating. Measured from the roating string weight, the pick-up drag is usually slightly greater than the slack-off drag. The magnitudes of torque and drag are related in any particular well; high drag forced and exessive torque loads normally occur together. There are a number of phenomena wich contribute to torque and drag. Included are tight hole conditions, sloughing hole, keyseats, differential sticking, cuttings build up due to poor hole cleaning and sliding wellbore friction. With the exception of sliding friction, these causes are associated with problem conditions in the wellbore. Conversely, in wells with good hole conditions, the primary source of torque and drag is sliding friction. This paper is only concerned with the torque and drag caused by sliding friction. The cabability to predict frictional loads on drill pipe has two main benefits. First, more complete knowledge of drill-string loading allows use of improved drill-string design techniques. Drill-string components can be chosen using a systematic approach considering the force involved. Second, deep, highly-deviated wells can be planned to minimize torque and drag. Use of torque and drag as a criteria to select the most appropriate well path will help ensure successful drilling operations to total depth. 1 fig., 2 tabs. (Author).

  12. String theory on the edge

    International Nuclear Information System (INIS)

    Thorlacius, L.

    1989-01-01

    Open string vacuum configurations are described in terms of a one-dimensional field theory on the worldsheet boundary. The one-dimensional path integral has direct physical interpretation as a source term for closed string fields. This means that the vacuum divergences (Mobius infinities) of the path integral must be renormalized correctly. The author shows that reparametrization invariance Ward identities, apart from specifying the equations of motion of spacetime background gauge fields, also serve to fix the renormalization scheme of the vacuum divergences. He argues that vacuum configurations of open strings correspond to Caldeira-Leggett models of dissipative quantum mechanics (DQM) evaluated at a delocalization critical point. This connection reveals that critical DQM will manifest reparametrization invariance (inherited from the conformal invariance of string theory) rather than just scale invariance. This connection should open up new ways of constructing analytic and approximate solutions of open string theory (in particular, topological solitons such as monopoles and instantons). Type I superstring theory gives rise to a supersymmetric boundary field theory. Bose-Fermi cancellation eliminates vacuum divergences but the one-loop beta function remains the same as in the bosonic theory. Reparametrization invariance Ward identities dictate a boundary state normalization which yields consistent string-loop corrections to spacetime equations of motion, in both the periodic and anti-periodic fermion sectors

  13. Regularization of finite temperature string theories

    International Nuclear Information System (INIS)

    Leblanc, Y.; Knecht, M.; Wallet, J.C.

    1990-01-01

    The tachyonic divergences occurring in the free energy of various string theories at finite temperature are eliminated through the use of regularization schemes and analytic continuations. For closed strings, we obtain finite expressions which, however, develop an imaginary part above the Hagedorn temperature, whereas open string theories are still plagued with dilatonic divergences. (orig.)

  14. Mechanical Properties of Nylon Harp Strings

    Science.gov (United States)

    Lynch-Aird, Nicolas; Woodhouse, Jim

    2017-01-01

    Monofilament nylon strings with a range of diameters, commercially marketed as harp strings, have been tested to establish their long-term mechanical properties. Once a string had settled into a desired stress state, the Young’s modulus was measured by a variety of methods that probe different time-scales. The modulus was found to be a strong function of testing frequency and also a strong function of stress. Strings were also subjected to cyclical variations of temperature, allowing various thermal properties to be measured: the coefficient of linear thermal expansion and the thermal sensitivities of tuning, Young’s modulus and density. The results revealed that the particular strings tested are divided into two groups with very different properties: stress-strain behaviour differing by a factor of two and some parametric sensitivities even having the opposite sign. Within each group, correlation studies allowed simple functional fits to be found to the key properties, which have the potential to be used in automated tuning systems for harp strings. PMID:28772858

  15. Mechanical Properties of Nylon Harp Strings

    Directory of Open Access Journals (Sweden)

    Nicolas Lynch-Aird

    2017-05-01

    Full Text Available Monofilament nylon strings with a range of diameters, commercially marketed as harp strings, have been tested to establish their long-term mechanical properties. Once a string had settled into a desired stress state, the Young’s modulus was measured by a variety of methods that probe different time-scales. The modulus was found to be a strong function of testing frequency and also a strong function of stress. Strings were also subjected to cyclical variations of temperature, allowing various thermal properties to be measured: the coefficient of linear thermal expansion and the thermal sensitivities of tuning, Young’s modulus and density. The results revealed that the particular strings tested are divided into two groups with very different properties: stress-strain behaviour differing by a factor of two and some parametric sensitivities even having the opposite sign. Within each group, correlation studies allowed simple functional fits to be found to the key properties, which have the potential to be used in automated tuning systems for harp strings.

  16. Perturbation theory for quantized string fields

    International Nuclear Information System (INIS)

    Thorn, C.B.; Florida Univ., Gainesville

    1987-01-01

    We discuss the problem of gauge fixing in string field theory. We show that BRST invariance requires the gauge-fixed action to contain terms cubic in the ghost... of ghost of ghost fields. The final BRST invariant gauge-fixed action for the gauge b 0 A=0 is extremely simple: with the proper interpretation (as given in this article), it is essentially the one anticipated earlier in the work of Giddings, Martinec, and Witten in their analysis of the BRST invariant world-sheet approach to string theory. We derive the Feynman rules from this action and explain in detail how the sum over sufaces of the BRST first-quantized string is reproduced. This result depends crucially on the correct assignment for the Grassmann character of the string field and its ghost... of ghost of ghost string fields. If all these fields are unified in a single string field Φ containing all ghost numbers, the requirements is that Φ be uniformly Grassmann odd. Finally, we do some sample calculations which provide some simple checks on our general results. (orig.)

  17. Multi-branes boundary states with open string interactions

    International Nuclear Information System (INIS)

    Pesando, Igor

    2008-01-01

    We derive boundary states which describe configurations of multiple parallel branes with arbitrary open string states interactions in bosonic string theory. This is obtained by a careful discussion of the factorization of open/closed string states amplitudes taking care of cycles needed by ensuring vertices commutativity: in particular the discussion reveals that already at the tree level open string knows of the existence of closed string

  18. Regularized strings with extrinsic curvature

    International Nuclear Information System (INIS)

    Ambjoern, J.; Durhuus, B.

    1987-07-01

    We analyze models of discretized string theories, where the path integral over world sheet variables is regularized by summing over triangulated surfaces. The inclusion of curvature in the action is a necessity for the scaling of the string tension. We discuss the physical properties of models with extrinsic curvature terms in the action and show that the string tension vanishes at the critical point where the bare extrinsic curvature coupling tends to infinity. Similar results are derived for models with intrinsic curvature. (orig.)

  19. Applicant Interview Experiences and Postinterview Communication of the 2016 Radiation Oncology Match Cycle

    Energy Technology Data Exchange (ETDEWEB)

    Berriochoa, Camille; Ward, Matthew C.; Weller, Michael A. [Department of Radiation Oncology, Taussig Cancer Institute, Cleveland Clinic, Cleveland, Ohio (United States); Holliday, Emma [Department of Radiation Oncology, M. D. Anderson Cancer Center, Houston, Texas (United States); Kusano, Aaron [Department of Radiation Oncology, Anchorage and Valley Radiation Therapy Center, Anchorage, Alaska (United States); Thomas, Charles R. [Department of Radiation Oncology, Oregon Health & Science University, Portland, Oregon (United States); Tendulkar, Rahul D., E-mail: tendulr@ccf.org [Department of Radiation Oncology, Taussig Cancer Institute, Cleveland Clinic, Cleveland, Ohio (United States)

    2016-11-01

    Purpose: To characterize applicant interview experiences at radiation oncology residency programs during the 2016 match cycle and to assess applicant opinions regarding postinterview communication (PIC) after recent attention to gamesmanship noted in prior match cycles. Methods and Materials: An anonymous, institutional review board–approved, 29-question survey was deployed following the rank order list deadline to all 2016 radiation oncology residency applicants applying to a single institution. Results: Complete surveys were returned by 118 of 210 applicants, for a 56% response rate. Regarding possible match violation questions, 84% of respondents were asked at least once about where else they were interviewing (occurred at a median of 20% of program interviews); 51% were asked about marital status (6% of interviews); and 22% were asked about plans to have children (1% of interviews). Eighty-three percent of applicants wrote thank-you notes, with 55% reporting fear of being viewed unfavorably if such notes were not communicated. Sixty percent of applicants informed a program that they had ranked a program highly; 53% felt this PIC strategy would improve their standing on the rank order list, yet 46% reported feeling distressed by this obligation. A majority of applicants stated that they would feel relieved if programs explicitly discouraged PIC (89%) and that it would be preferable if programs prohibited applicants from notifying the program of their rank position (66%). Conclusions: Potential match violations occur at a high rate but are experienced at a minority of interviews. Postinterview communication occurs frequently, with applicants reporting resultant distress. Respondents stated that active discouragement of both thank-you notes/e-mails and applicants' notification to programs of their ranking would be preferred.

  20. Applicant Interview Experiences and Postinterview Communication of the 2016 Radiation Oncology Match Cycle

    International Nuclear Information System (INIS)

    Berriochoa, Camille; Ward, Matthew C.; Weller, Michael A.; Holliday, Emma; Kusano, Aaron; Thomas, Charles R.; Tendulkar, Rahul D.

    2016-01-01

    Purpose: To characterize applicant interview experiences at radiation oncology residency programs during the 2016 match cycle and to assess applicant opinions regarding postinterview communication (PIC) after recent attention to gamesmanship noted in prior match cycles. Methods and Materials: An anonymous, institutional review board–approved, 29-question survey was deployed following the rank order list deadline to all 2016 radiation oncology residency applicants applying to a single institution. Results: Complete surveys were returned by 118 of 210 applicants, for a 56% response rate. Regarding possible match violation questions, 84% of respondents were asked at least once about where else they were interviewing (occurred at a median of 20% of program interviews); 51% were asked about marital status (6% of interviews); and 22% were asked about plans to have children (1% of interviews). Eighty-three percent of applicants wrote thank-you notes, with 55% reporting fear of being viewed unfavorably if such notes were not communicated. Sixty percent of applicants informed a program that they had ranked a program highly; 53% felt this PIC strategy would improve their standing on the rank order list, yet 46% reported feeling distressed by this obligation. A majority of applicants stated that they would feel relieved if programs explicitly discouraged PIC (89%) and that it would be preferable if programs prohibited applicants from notifying the program of their rank position (66%). Conclusions: Potential match violations occur at a high rate but are experienced at a minority of interviews. Postinterview communication occurs frequently, with applicants reporting resultant distress. Respondents stated that active discouragement of both thank-you notes/e-mails and applicants' notification to programs of their ranking would be preferred.

  1. The stability of D-term cosmic strings

    International Nuclear Information System (INIS)

    Collinucci, A.; Smyth, P.; Van Proeyen, A.

    2007-01-01

    In this article, we discuss the semi-classical stability of the D-term string solution of D=4, N=1 supergravity with a constant Fayet-Iliopoulos term. Regardless of the particular theory one is interested in, the stability of cosmic strings is necessary if we hope to observe them. We apply the spinorial Witten-Nester method to prove a positive energy theorem for the D-term cosmic string background with positive deficit angle. We also pay particular attention to the negative deficit angle D-term string, which is known to violate the dominant energy condition. Within the class of string solutions we consider, this violation implies that the negative deficit angle D-term string must have a naked pathology and therefore the positive energy theorem we prove does not apply to it. (orig.)

  2. Stringing physics along

    Energy Technology Data Exchange (ETDEWEB)

    Riordan, M. [Stanford University and the University of California, Santa Cruz (United States)]. E-mail: mriordan@ucsc.edu

    2007-02-15

    In the last few decades, however, physical theory has drifted away from the professional norms advocated by Newton and other enlightenment philosophers. A vast outpouring of hypotheses has occurred under the umbrella of what is widely called string theory. But string theory is not really a 'theory' at all - at least not in the strict sense that scientists generally use the term. It is instead a dense, weedy thicket of hypotheses and conjectures badly in need of pruning. That pruning, however, can come only from observation and experiment, to which string theory (a phrase I will grudgingly continue using) is largely inaccessible. String theory was invented in the 1970s in the wake of the Standard Model of particle physics. Encouraged by the success of gauge theories of the strong, weak and electromagnetic forces, theorists tried to extend similar ideas to energy and distance scales that are orders of magnitude beyond what can be readily observed or measured. The normal, healthy intercourse between theory and experiment - which had led to the Standard Model - has broken down, and fundamental physics now finds itself in a state of crisis. So it is refreshing to hear from a theorist - one who was deeply involved with string theory and championed it in his previous book, Three Roads to Quantum Gravity - that all is not well in this closeted realm. Smolin argues from the outset that viable hypotheses must lead to observable consequences by which they can be tested and judged. String theory by its very nature does not allow for such probing, according to Smolin, and therefore it must be considered as an unprovable conjecture. Towards the end of his book, Smolin suggests other directions fundamental physics can take, particularly in the realm of quantum gravity, to resolve its crisis and reconnect with the observable world. From my perspective, he leans a bit too heavily towards highly speculative ideas such as doubly special relativity, modified Newtonian

  3. String loop divergences and effective lagrangians

    International Nuclear Information System (INIS)

    Fischler, W.; Klebanov, I.; Susskind, L.

    1988-01-01

    We isolate logarithmic divergences from bosonic string amplitudes on a disc. These divergences are compared with 'tadpole' divergences in the effective field theory, with a covariant cosmological term implied by the counting of string coupling constants. We find an inconsistency between the two. This might be a problem in eliminating divergences from the bosonic string. (orig.)

  4. Quark potential of spontaneous strings

    International Nuclear Information System (INIS)

    German, G.; Kleinert, H.

    1989-01-01

    The authors present some recent developments in string models with an extrinsic curvature term in action. Particular emphasis is placed upon the static quark potential and on the thermal deconfinement properties of spontaneous strings

  5. Heterotic string construction

    International Nuclear Information System (INIS)

    Schellekens, A.N.

    1989-01-01

    In this paper an elementary introduction to the principles of four-dimensional string construction will be given. Although the emphasis is on lattice constructions, almost all results have further, and often quite straightforward generalizations to other constructions. Since heterotic strings look phenomenologically more promising than type-II theories the authors only consider the former, although everything can easily be generalized to type-II theories. Some additional aspects of lattice constructions are discussed, and an extensive review can be found

  6. Conformal symmetry and string theories

    International Nuclear Information System (INIS)

    Kumar, A.

    1987-01-01

    This thesis is devoted to the study of various aspects of the 2-dimensional conformal field theory and its applications to strings. We make a short review of the conformal field theory and its supersymmetric extension, called superconformal field theory. We present an elegant superspace formulation of these theories and solve the condition for the closure of the superconformal algebra. The we go on to classify the superconformal field theories according to these solutions. We prove that N ≥ 5 superconformal algebra, with N being the number of supersymmetries, does not have central charge. We find the primary representations of all the interesting superconformal algebra. We study the quantization of the superconformal theories and derive the constraints on the central charge of the algebra that has to be satisfied for a consistent quantum theory. This quantization process also determines the ground state energy of the system and the spectrum of the model. We study the global aspects of the conformal symmetry and its role in the construction of consistent heterotic string theories. We prove the uniqueness of heterotic superstring theories in 10 dimensions in the fermionic constructions. We show how the vertex operators are closely associated with the primary field representation of the conformal algebra. We utilize these vertex operator constructions to obtain tree amplitudes in the 10-dimensional heterotic string theory. We show by explicit calculation at the 3-point level that the scattering amplitudes derived from the heterotic superstring are same as the ones obtained from 10-dimensional supergravity theories

  7. Derandomizing from random strings

    NARCIS (Netherlands)

    Buhrman, H.; Fortnow, L.; Koucký, M.; Loff, B.

    2010-01-01

    In this paper we show that BPP is truth-table reducible to the set of Kolmogorov random strings R(K). It was previously known that PSPACE, and hence BPP is Turing-reducible to R(K). The earlier proof relied on the adaptivity of the Turing-reduction to find a Kolmogorov-random string of polynomial

  8. Non-linear Yang-Mills instantons from strings are π-stable D-branes

    International Nuclear Information System (INIS)

    Enger, H.; Luetken, C.A.

    2004-01-01

    We show that B-type Π-stable D-branes do not in general reduce to the (Gieseker-) stable holomorphic vector bundles used in mathematics to construct moduli spaces. We show that solutions of the almost Hermitian Yang-Mills equations for the non-linear deformations of Yang-Mills instantons that appear in the low-energy geometric limit of strings exist iff they are π-stable, a geometric large volume version of Π-stability. This shows that π-stability is the correct physical stability concept. We speculate that this string-canonical choice of stable objects, which is encoded in and derived from the central charge of the string-algebra, should find applications to algebraic geometry where there is no canonical choice of stable geometrical objects

  9. Strings draw theorists together

    Energy Technology Data Exchange (ETDEWEB)

    Green, Michael [Department of Applied Mathematics and Theoretical Physics, University of Cambridge, Cambridge (United Kingdom)

    2000-03-01

    Theorists are confident that they are closer than ever to finding a quantum theory that unites gravity with the three other fundamental forces in nature. Many of the leading figures in the world of string theory met at the California Institute of Technology in January to discuss recent progress in the field and to reflect on the state of the theory. The enthusiastic mood of the gathering was based on the fact that string theory provides an elegant framework for a unified theory of all the forces and particles in nature, and also gives a consistent quantum-mechanical description of general relativity. String theory, and more precisely superstring theory, describes the assortment of elementary particles such as quarks and leptons, and the gauge bosons responsible for mediating forces in a unified manner as different modes of vibration of a single extended string. This version of the theory also embodies supersymmetry a conjectured symmetry that unifies fermions and bosons. Furthermore, the fact that the string has a fundamental length scale - the ''string length'' - apparently cures the short-distance problems of uniting general relativity with quantum theory. The main problem with the early formulations of superstring theory was that they emphasized the ''perturbative'' point of view, an approximation that describes string-like quantum-mechanical particles moving through classical (that is non quantum-mechanical) space-time. However, very general arguments require that any quantum theory of gravity should also describe space-time geometry in a quantum-mechanical manner. The classical geometry of space-time should then emerge as an approximate description at distance scales much larger than the so-called Planck scale of 10{sup -33} m. This requires an understanding of the theory beyond the perturbative approximation. It is the quest for this more fundamental description of string theory that has provided the main challenge for

  10. Document retrieval on repetitive string collections.

    Science.gov (United States)

    Gagie, Travis; Hartikainen, Aleksi; Karhu, Kalle; Kärkkäinen, Juha; Navarro, Gonzalo; Puglisi, Simon J; Sirén, Jouni

    2017-01-01

    Most of the fastest-growing string collections today are repetitive, that is, most of the constituent documents are similar to many others. As these collections keep growing, a key approach to handling them is to exploit their repetitiveness, which can reduce their space usage by orders of magnitude. We study the problem of indexing repetitive string collections in order to perform efficient document retrieval operations on them. Document retrieval problems are routinely solved by search engines on large natural language collections, but the techniques are less developed on generic string collections. The case of repetitive string collections is even less understood, and there are very few existing solutions. We develop two novel ideas, interleaved LCPs and precomputed document lists , that yield highly compressed indexes solving the problem of document listing (find all the documents where a string appears), top- k document retrieval (find the k documents where a string appears most often), and document counting (count the number of documents where a string appears). We also show that a classical data structure supporting the latter query becomes highly compressible on repetitive data. Finally, we show how the tools we developed can be combined to solve ranked conjunctive and disjunctive multi-term queries under the simple [Formula: see text] model of relevance. We thoroughly evaluate the resulting techniques in various real-life repetitiveness scenarios, and recommend the best choices for each case.

  11. Boundary terms in the Nambu-Goto string action

    Science.gov (United States)

    Hadasz, Leszek; Wȩgrzyn, Paweł

    1995-03-01

    We investigate classical strings defined by the Nambu-Goto action with the boundary term added. We demonstrate that the latter term has a significant bearing on the string dynamics. It is confirmed that new action terms that depend on higher order derivatives of string coordinates cannot be considered as continuous perturbations from the starting string functional. In the case when the boundary term reduces to the Gauss-Bonnet term, a stability analysis is performed on the rotating rigid string solution. We determine the most generic solution that the fluctuations grow to. Longitudinal string excitations are found. The Regge trajectories are nonlinear.

  12. Boundary terms in the Nambu-Goto string action

    International Nuclear Information System (INIS)

    Hadasz, L.; Wegrzyn, P.

    1995-01-01

    We investigate classical strings defined by the Nambu-Goto action with the boundary term added. We demonstrate that the latter term has a significant bearing on the string dynamics. It is confirmed that new action terms that depend on higher order derivatives of string coordinates cannot be considered as continuous perturbations from the starting string functional. In the case when the boundary term reduces to the Gauss-Bonnet term, a stability analysis is performed on the rotating rigid string solution. We determine the most generic solution that the fluctuations grow to. Longitudinal string excitations are found. The Regge trajectories are nonlinear

  13. Worldsheet geometries of ambitwistor string

    Energy Technology Data Exchange (ETDEWEB)

    Ohmori, Kantaro [Department of Physics, the University of Tokyo,Hongo, Bunkyo-ku, Tokyo 133-0022 (Japan)

    2015-06-12

    Mason and Skinner proposed the ambitwistor string theory which directly reproduces the formulas for the amplitudes of massless particles proposed by Cachazo, He and Yuan. In this paper we discuss geometries of the moduli space of worldsheets associated to the bosonic or the RNS ambitwistor string. Further, we investigate the factorization properties of the amplitudes when an internal momentum is near on-shell in the abstract CFT language. Along the way, we propose the existence of the ambitwistor strings with three or four fermionic worldsheet currents.

  14. Spin chain for quantum strings

    International Nuclear Information System (INIS)

    Beisert, N.

    2005-01-01

    We review and compare the integrable structures in N=4 gauge theory and string theory on AdS 5 x S 5 . Recently, Bethe ansaetze for gauge theory/weak coupling and string theory/strong coupling were proposed to describe scaling dimensions in the su(2) subsector. Here we investigate the Bethe equations for quantum string theory, naively extrapolated to weak coupling. Excitingly, we find a spin chain Hamiltonian similar, but not equal, to the gauge theory dilatation operator. (Abstract Copyright [2005], Wiley Periodicals, Inc.)

  15. Comparison of string models for heavy ion collisions

    International Nuclear Information System (INIS)

    Werner, K.

    1990-01-01

    An important method to explore new domains in physics is to compare new results with extrapolations from known areas. For heavy ion collision this can be done with string models, which extrapolate from light to heavy systems and which also may be used to extrapolate to higher energies. That does not mean that these string models are only background models, one may easily implement new ideas on top of the known aspects, providing much more reliable models than those formed from scratch. All the models to be considered in this paper have in common that they consist of three independent building blocks: (a) geometry, (b) string formation and (c) string fragmentation. The geometry aspect is treated quite similar in all models: nucleons are distributed inside each nucleus according to some standard parameterization of nuclear densities. The nuclei move through each other on a straight line trajectory, with all the nucleon positions being fixed. Whenever a projectile and a target nucleon come close, they interact. Such an interaction results in string formation. In the last step these strings decay into observable hadrons according to some string fragmentation procedure. The three building blocks are independent, so one can combine different methods in an arbitrary manner. Therefore rather than treating the models one after the other, the author discusses the procedures for string formation and string fragmentation as used by the models. He considers string models in a very general sense, so he includes models where the authors never use the word string, but which may be most naturally interpreted as string models and show strong similarities with real string models. Although very important he does not discuss - for time and space reasons - recent developments concerning secondary scattering

  16. Scaling properties of cosmic (super)string networks

    International Nuclear Information System (INIS)

    Martins, C J A P

    2014-01-01

    I use a combination of state-of-the-art numerical simulations and analytic modelling to discuss the scaling properties of cosmic defect networks, including superstrings. Particular attention is given to the role of extra degrees of freedom in the evolution of these networks. Compared to the 'plain vanilla' case of Goto-Nambu strings, three such extensions play important but distinct roles in the network dynamics: the presence of charges/currents on the string worldsheet, the existence of junctions, and the possibility of a hierarchy of string tensions. I also comment on insights gained from studying simpler defect networks, including Goto-Nambu strings themselves, domain walls and semilocal strings

  17. Numerical simulation of bosonic-superconducting-string interactions

    International Nuclear Information System (INIS)

    Laguna, P.; Matzner, R.A.

    1990-01-01

    Numerical simulations show that bosonic superconducting U(1) gauge cosmic strings interact by reconnecting and chopping off in a fashion similar to nonconducting strings. Cancellation of the electromagnetic current occurs when, in one of the strings, the direction of the U(1) gauge magnetic field is opposite to the electromagnetic current flow. Electric charge accumulates on the segments of the reconnected strings where the current is discontinuous or vanishes. A virtual photon appears after the collision and intercommutation, and a bubble of electromagnetic radiation emerges as the currents in the reconnected strings equalize. These phenomena suggest new possible mechanisms for void production in the large-scale distribution of galaxies

  18. 'Hard' effects in Monte Carlo proton-(anti) proton events of soft two-string dual parton model, e+e- annihilation and cascade scaling break of string and the theory of the open string

    International Nuclear Information System (INIS)

    Lugovoj, V.V.

    1998-01-01

    At proton-(anti) proton scattering in the frame of two-string Dual Parton Model the semihard parton-parton interactions can lead to the valence (anti) (di) quark excitations which lead to the production of up to four fast hadron leaders, and the process of soft colour interaction between constituents leads to formation of two primary strings, which decay into secondary hadrons according to a new cascade model of string breaking, which corresponds to the fundamental interaction of the theory of the open string. Therefore the recent results of the theory of QCD open string (about the small deviations of the string stretch direction near the longitudinal direction) are used in the algorithm of string breaking. For the fitted values of the free parameters in the process of decay of mother string into two daughter strings the energy (momentum) distributions for the first and second daughter strings are similar to momentum distributions for valence quark and antiquark in meson. This Monte Carlo model with 9 free parameters agrees well with the multiplicity, pseudorapidity, transverse momentum (up to p T =4GeV) distributions and correlations between the average transverse momentum and multiplicity of secondary particles produced by ISR, SS, Tevatron experiments (√s=27 to 1800 GeV). There is quantitative (and qualitative) explanation for correlations between the average transverse momentum and multiplicity for different types of secondary particles (antiprotons, kaons, pions) at √s =1800 GeV. A cascade model of string breaking is a new Monte Carlo model for hadronization which agrees well with the experimental multiplicity, rapidity, transverse momentum distributions of secondary particles produced by e + e - annihilation at E c.m. =3GeV. (author)

  19. The energy and stability of D-term strings

    International Nuclear Information System (INIS)

    Collinucci, Andres; Smyth, Paul; Proeyen, Antoine van

    2007-01-01

    Cosmic strings derived from string theory, supergravity or any theory of choice should be stable if we hope to observe them. In this paper we consider D-term strings in D = 4 , N = 1 supergravity with a constant Fayet-Iliopoulos term. We show that the positive deficit angle supersymmetric D-term string is non-perturbatively stable by using standard Witten-Nester techniques to prove a positive energy theorem. Particular attention is paid to the negative deficit angle D-term string, which is known to violate the dominant energy condition. Within the class of string solutions we consider, this violation implies that the negative deficit angle D-term string must have a naked pathology and therefore the positive energy theorem we prove does not apply to it. As an interesting aside, we show that the Witten-Nester charge calculates the total gravitational energy of the D-term string without the need for a cut-off, which may not have been expected

  20. A model for string-breaking in QCD

    International Nuclear Information System (INIS)

    Antonov, Dmitri; Del Debbio, Luigi; Di Giacomo, Adriano

    2003-01-01

    We present a model for string breaking based on the existence of chromoelectric flux tubes. We predict the form of the long-range potential and obtain an estimate of the string breaking length. A prediction is also obtained for the behaviour with temperature of the string breaking length near the deconfinement phase transition. We plan to use this model as a guide for a program of study of string breaking on the lattice. (author)

  1. String Resonances at Hadron Colliders

    CERN Document Server

    Anchordoqui, Luis A; Dai, De-Chang; Feng, Wan-Zhe; Goldberg, Haim; Huang, Xing; Lust, Dieter; Stojkovic, Dejan; Taylor, Tomasz R

    2014-01-01

    [Abridged] We consider extensions of the standard model based on open strings ending on D-branes. Assuming that the fundamental string mass scale M_s is in the TeV range and that the theory is weakly coupled, we discuss possible signals of string physics at the upcoming HL-LHC run (3000 fb^{-1}) with \\sqrt{s} = 14 TeV, and at potential future pp colliders, HE-LHC and VLHC, operating at \\sqrt{s} = 33 and 100 TeV, respectively. In such D-brane constructions, the dominant contributions to full-fledged string amplitudes for all the common QCD parton subprocesses leading to dijets and \\gamma + jet are completely independent of the details of compactification, and can be evaluated in a parameter-free manner. We make use of these amplitudes evaluated near the first (n=1) and second (n=2) resonant poles to determine the discovery potential for Regge excitations of the quark, the gluon, and the color singlet living on the QCD stack. We show that for string scales as large as 7.1 TeV (6.1 TeV), lowest massive Regge exc...

  2. σ-models and string theories

    International Nuclear Information System (INIS)

    Randjbar-Daemi, S.

    1987-01-01

    The propagation of closed bosonic strings interacting with background gravitational and dilaton fields is reviewed. The string is treated as a quantum field theory on a compact 2-dimensional manifold. The question is posed as to how the conditions for the vanishing trace anomaly and the ensuing background field equations may depend on global features of the manifold. It is shown that to the leading order in σ-model perturbation theory the string loop effects do not modify the gravitational and the dilaton field equations. However for the purely bosonic strings new terms involving the modular parameter of the world sheet are induced by quantum effects which can be absorbed into a re-definition of the background fields. The authors also discuss some aspects of several regularization schemes such as dimensional, Pauli-Villars and the proper-time cut off in an appendix

  3. Transplanckian censorship and global cosmic strings

    International Nuclear Information System (INIS)

    Dolan, Matthew J.; Draper, Patrick; Kozaczuk, Jonathan; Patel, Hiren

    2017-01-01

    Large field excursions are required in a number of axion models of inflation. These models also possess global cosmic strings, around which the axion follows a path mirroring the inflationary trajectory. Cosmic strings are thus an interesting theoretical laboratory for the study of transplanckian field excursions. We describe connections between various effective field theory models of axion monodromy and study the classical spacetimes around their supercritical cosmic strings. For small decay constants fM p /f, the EFT is under control and the string cores undergo topological inflation, which may be either of exponential or power-law type. We show that the exterior spacetime is nonsingular and equivalent to a decompactifying cigar geometry, with the radion rolling in a potential generated by axion flux. Signals are able to circumnavigate infinite straight strings in finite but exponentially long time, t∼e Δa/M p . For finite loops of supercritical string in asymptotically flat space, we argue that if topological inflation occurs, then topological censorship implies transplanckian censorship, or that external observers are forbidden from threading the loop and observing the full excursion of the axion.

  4. Transplanckian censorship and global cosmic strings

    Science.gov (United States)

    Dolan, Matthew J.; Draper, Patrick; Kozaczuk, Jonathan; Patel, Hiren

    2017-04-01

    Large field excursions are required in a number of axion models of inflation. These models also possess global cosmic strings, around which the axion follows a path mirroring the inflationary trajectory. Cosmic strings are thus an interesting theoretical laboratory for the study of transplanckian field excursions. We describe connections be-tween various effective field theory models of axion monodromy and study the classical spacetimes around their supercritical cosmic strings. For small decay constants f M p /f , the EFT is under control and the string cores undergo topological inflation, which may be either of exponential or power-law type. We show that the exterior spacetime is nonsingular and equivalent to a decompactifying cigar geometry, with the radion rolling in a potential generated by axion flux. Signals are able to circumnavigate infinite straight strings in finite but exponentially long time, t ˜ e Δ a/ M p . For finite loops of supercritical string in asymptotically flat space, we argue that if topological inflation occurs, then topological censorship implies transplanckian censorship, or that external observers are forbidden from threading the loop and observing the full excursion of the axion.

  5. Transplanckian censorship and global cosmic strings

    Energy Technology Data Exchange (ETDEWEB)

    Dolan, Matthew J. [ARC Centre of Excellence for Particle Physics at the Terascale,School of Physics, University of Melbourne,Melbourne, 3010 (Australia); Draper, Patrick; Kozaczuk, Jonathan; Patel, Hiren [Amherst Center for Fundamental Interactions, Department of Physics,University of Massachusetts,Amherst, MA 01003 (United States)

    2017-04-21

    Large field excursions are required in a number of axion models of inflation. These models also possess global cosmic strings, around which the axion follows a path mirroring the inflationary trajectory. Cosmic strings are thus an interesting theoretical laboratory for the study of transplanckian field excursions. We describe connections between various effective field theory models of axion monodromy and study the classical spacetimes around their supercritical cosmic strings. For small decay constants fM{sub p}/f, the EFT is under control and the string cores undergo topological inflation, which may be either of exponential or power-law type. We show that the exterior spacetime is nonsingular and equivalent to a decompactifying cigar geometry, with the radion rolling in a potential generated by axion flux. Signals are able to circumnavigate infinite straight strings in finite but exponentially long time, t∼e{sup Δa/M{sub p}}. For finite loops of supercritical string in asymptotically flat space, we argue that if topological inflation occurs, then topological censorship implies transplanckian censorship, or that external observers are forbidden from threading the loop and observing the full excursion of the axion.

  6. A universality test of the quantum string Bethe ansatz

    DEFF Research Database (Denmark)

    Freyhult, L.; Kristjansen, C.

    2006-01-01

    We show that the quantum corrected string Bethe ansatz passes an important universality test by demonstrating that it correctly incorporates the non-analytical terms in the string sigma model one-loop correction for rational three-spin strings with two out of the three spins identical. Subsequent......, we use the quantum corrected string Bethe ansatz to predict the exact form of the non-analytic terms for the generic rational three-spin string.......We show that the quantum corrected string Bethe ansatz passes an important universality test by demonstrating that it correctly incorporates the non-analytical terms in the string sigma model one-loop correction for rational three-spin strings with two out of the three spins identical. Subsequently...

  7. Observing string breaking with Wilson loops

    CERN Document Server

    Kratochvila, S; Kratochvila, Slavo; Forcrand, Philippe de

    2003-01-01

    An uncontroversial observation of adjoint string breaking is proposed, while measuring the static potential from Wilson loops only. The overlap of the Wilson loop with the broken-string state is small, but non-vanishing, so that the broken-string groundstate can be seen if the Wilson loop is long enough. We demonstrate this in the context of the (2+1)d SU(2) adjoint static potential, using an improved version of the Luscher-Weisz exponential variance reduction. To complete the picture we perform the more usual multichannel analysis with two basis states, the unbroken-string state and the broken-string state (two so-called gluelumps). As by-products, we obtain the temperature-dependent static potential measured from Polyakov loop correlations, and the fundamental SU(2) static potential with improved accuracy. Comparing the latter with the adjoint potential, we see clear deviations from Casimir scaling.

  8. String theory of the Regge intercept.

    Science.gov (United States)

    Hellerman, S; Swanson, I

    2015-03-20

    Using the Polchinski-Strominger effective string theory in the covariant gauge, we compute the mass of a rotating string in D dimensions with large angular momenta J, in one or two planes, in fixed ratio, up to and including first subleading order in the large J expansion. This constitutes a first-principles calculation of the value for the order-J(0) contribution to the mass squared of a meson on the leading Regge trajectory in planar QCD with bosonic quarks. For open strings with Neumann boundary conditions, and for closed strings in D≥5, the order-J(0) term in the mass squared is exactly calculated by the semiclassical approximation. This term in the expansion is universal and independent of the details of the theory, assuming only D-dimensional Poincaré invariance and the absence of other infinite-range excitations on the string world volume, beyond the Nambu-Goldstone bosons.

  9. Plucked Strings and the Harpsichord

    Science.gov (United States)

    GIORDANO, N.; WINANS, J. P.

    1999-07-01

    The excitation of a harpsichord string when it is set into motion, i.e., plucked, by a plectrum is studied. We find that the amplitude of the resulting string vibration is approximately independent of the velocity with which the key is depressed. This result is in accord with conventional wisdom, but at odds with a recent theoretical model. A more realistic theoretical treatment of the plucking process is then described, and shown to be consistent with our measurements. The experiments reveal several other interesting aspects of the plectrum-string interaction.

  10. Geometry, topology, and string theory

    Energy Technology Data Exchange (ETDEWEB)

    Varadarajan, Uday [Univ. of California, Berkeley, CA (United States)

    2003-01-01

    A variety of scenarios are considered which shed light upon the uses and limitations of classical geometric and topological notions in string theory. The primary focus is on situations in which D-brane or string probes of a given classical space-time see the geometry quite differently than one might naively expect. In particular, situations in which extra dimensions, non-commutative geometries as well as other non-local structures emerge are explored in detail. Further, a preliminary exploration of such issues in Lorentzian space-times with non-trivial causal structures within string theory is initiated.

  11. Geometry, topology, and string theory

    International Nuclear Information System (INIS)

    Varadarajan, Uday

    2003-01-01

    A variety of scenarios are considered which shed light upon the uses and limitations of classical geometric and topological notions in string theory. The primary focus is on situations in which D-brane or string probes of a given classical space-time see the geometry quite differently than one might naively expect. In particular, situations in which extra dimensions, non-commutative geometries as well as other non-local structures emerge are explored in detail. Further, a preliminary exploration of such issues in Lorentzian space-times with non-trivial causal structures within string theory is initiated

  12. On integrable c < 1 open-closed string theory

    International Nuclear Information System (INIS)

    Johnson, C.V.

    1994-01-01

    The integrable structure of open-closed string theories in the (p, q) conformal minimal model backgrounds is presented. The relation between the τ-function of the closed string theory and that of the open-closed string theory is uncovered. The resulting description of the open-closed string theory is shown to fit very naturally into the framework of the sl(q, C) KdV hierarchies. In particular, the twisted bosons which underlie and organise the structure of the closed string theory play a similar role here and may be employed to derive loop equations and correlation function recursion relations for the open-closed strings in a simple way. (orig.)

  13. Counting states of black strings with traveling waves

    International Nuclear Information System (INIS)

    Horowitz, G.T.; Marolf, D.

    1997-01-01

    We consider a family of solutions to string theory which depend on arbitrary functions and contain regular event horizons. They describe six-dimensional extremal black strings with traveling waves and have an inhomogeneous distribution of momentum along the string. The structure of these solutions near the horizon is studied and the horizon area computed. We also count the number of BPS string states at weak coupling whose macroscopic momentum distribution agrees with that of the black string. It is shown that the number of such states is given by the Bekenstein-Hawking entropy of the black string with traveling waves. copyright 1997 The American Physical Society

  14. String field representation of the Virasoro algebra

    Energy Technology Data Exchange (ETDEWEB)

    Mertes, Nicholas [Institute of Physics AS CR,Na Slovance 2, Prague 8 (Czech Republic); Department of Physics, University of Miami,Coral Gables, FL (United States); Schnabl, Martin [Institute of Physics AS CR,Na Slovance 2, Prague 8 (Czech Republic)

    2016-12-29

    We construct a representation of the zero central charge Virasoro algebra using string fields in Witten’s open bosonic string field theory. This construction is used to explore extensions of the KBc algebra and find novel algebraic solutions of open string field theory.

  15. General relativity invariance and string field theory

    International Nuclear Information System (INIS)

    Aref'eva, I.Ya.; Volovich, I.V.

    1987-04-01

    The general covariance principle in the string field theory is considered. The algebraic properties of the string Lie derivative are discussed. The string vielbein and spin connection are introduced and an action invariant under general co-ordinate transformation is proposed. (author). 18 refs

  16. A one-loop test of string duality

    International Nuclear Information System (INIS)

    Vafa, C.

    1995-01-01

    We test Type IIA-heterotic string duality in six dimensions by showing that the sigma model anomaly of the heterotic string is generated by a combination of a tree level and a string one-loop correction on the Type IIA side. (orig.)

  17. String model of black hole microstates

    International Nuclear Information System (INIS)

    Larsen, F.

    1997-01-01

    The statistical mechanics of black holes arbitrarily far from extremality is modeled by a gas of weakly interacting strings. As an effective low-energy description of black holes the string model provides several highly nontrivial consistency checks and predictions. Speculations on a fundamental origin of the model suggest surprising simplifications in nonperturbative string theory, even in the absence of supersymmetry. copyright 1997 The American Physical Society

  18. Dilatation transformation in the string model

    Energy Technology Data Exchange (ETDEWEB)

    Chikashige, Y [Tokyo Univ. (Japan). Coll. of General Education; Hosoda, M; Saito, S

    1975-05-01

    Dilatation transformation is discussed in the string model. We show that it becomes meaningful in the infinite slope limit of Regge trajectories for the motion of a free string. It turns out to be equivalent to the high energy limit of the dual amplitudes, with the Regge slope kept finite, in the case of interacting strings. The scaling phenomenon is explained from this point of view.

  19. Probing the string landscape: Implications, applications, and altercations

    Science.gov (United States)

    Dienes, Keith R.

    2015-01-01

    In keeping with the "Perspectives" theme of this volume, this Chapter provides a personal perspective on the string landscape. Along the way, the perspectives of many other physicists are discussed as well. No attempt is made to provide a thorough and balanced review of the field, and indeed there is a slight emphasis on my own contributions to this field, as these contributions have been critical to forming my perspective. This Chapter is adapted from a Colloquium which I have delivered at a number of institutions worldwide, and I have attempted to retain the informal and non-technical spirit and style of this Colloquium presentation as much as possible.

  20. A global string with an event horizon

    International Nuclear Information System (INIS)

    Harari, D.; Polychronakos, A.P.

    1990-01-01

    An idealized infinite straight global string in flat space-time has a logarithmically divergent energy per unit length. With gravity included, the standard field theoretical model for a straight global string has been shown to give rise to a repulsive gravitational field, and to develop a curvature singularity at a finite proper distance off the string core. Here we point out that alternative (although probably unrealistic) equations of state for the core of the global string produce a non-singular cylindrically symmetric metric with an event horizon at a finite proper distance off the core, such that timelike observers beyond the horizon are bound to move away from the string. The same geometric structure applies to the standard field theoretical model for a vortex in (2+1)-dimensional gravity. Thermal effects in a quantum field theory around the string due to the presence of the horizon are also calculated. (orig.)

  1. From UV/IR mixing to closed strings

    International Nuclear Information System (INIS)

    Lopez, Esperanza

    2003-01-01

    It was shown in [1] that the leading UV/IR mixing effects in noncommutative gauge theories on D-branes are able to capture information about the closed string spectrum of the parent string theory. The analysis was carried out for D-branes on nonsupersymmetric C 3 /Z N orbifolds of Type IIB. In this paper we consider D-branes on twisted circles compactifications of Type II string theory. We find that the signs of the leading UV/IR mixing effects know about the (mass) 2 gap between the lowest modes in NSNS and RR closed string towers. Moreover, the relevant piece of the field theory effective action can be reproduced purely in the language of closed strings. Remarkably, this approach unifies in a single structure, that of a closed string exchange between D-branes, both the leading planar and nonplanar effects associated to the absence of supersymmetry. (author)

  2. Correspondence principle for black holes and strings

    International Nuclear Information System (INIS)

    Horowitz, G.T.; Polchinski, J.

    1997-01-01

    For most black holes in string theory, the Schwarzschild radius in string units decreases as the string coupling is reduced. We formulate a correspondence principle, which states that (i) when the size of the horizon drops below the size of a string, the typical black hole state becomes a typical state of strings and D-branes with the same charges, and (ii) the mass does not change abruptly during the transition. This provides a statistical interpretation of black hole entropy. This approach does not yield the numerical coefficient, but gives the correct dependence on mass and charge in a wide range of cases, including neutral black holes. copyright 1997 The American Physical Society

  3. How many N = 4 strings exist?

    International Nuclear Information System (INIS)

    Ketov, S.V.

    1994-09-01

    Possible ways of constructing extended fermionic strings with N=4 world-sheet supersymmetry are reviewed. String theory constraints form, in general, a non-linear quasi(super)conformal algebra, and can have conformal dimensions ≥1. When N=4, the most general N=4 quasi-superconformal algebra to consider for string theory building is D(1, 2; α), whose linearisation is the so-called ''large'' N=4 superconformal algebra. The D(1, 2; α) algebra has su(2)sub(κ + )+su(2)sub(κ - )+u(1) Kac-Moody component, and α=κ - /κ + . We check the Jacobi identities and construct a BRST charge for the D(1, 2; α) algebra. The quantum BRST operator can be made nilpotent only when κ + =κ - =-2. The D(1, 2; 1) algebra is actually isomorphic to the SO(4)-based Bershadsky-Knizhnik non-linear quasi-superconformal algebra. We argue about the existence of a string theory associated with the latter, and propose the (non-covariant) hamiltonian action for this new N=4 string theory. Our results imply the existence of two different N=4 fermionic string theories: the old one based on the ''small'' linear N=4 superconformal algebra and having the total ghost central charge c gh =+12, and the new one with non-linearly realised N=4 supersymmetry, based on the SO(4) quasi-superconformal algebra and having c gh =+6. Both critical string theories have negative ''critical dimensions'' and do not admit unitary matter representations. (orig.)

  4. STRING v10

    DEFF Research Database (Denmark)

    Szklarczyk, Damian; Franceschini, Andrea; Wyder, Stefan

    2015-01-01

    , and the available data exhibit notable differences in terms of quality and completeness. The STRING database (http://string-db.org) aims to provide a critical assessment and integration of protein-protein interactions, including direct (physical) as well as indirect (functional) associations. The new version 10...... into families at various levels of phylogenetic resolution. Further improvements in version 10.0 include a completely redesigned prediction pipeline for inferring protein-protein associations from co-expression data, an API interface for the R computing environment and improved statistical analysis...

  5. String figures as mathematics? an anthropological approach to string figure-making in oral tradition societies

    CERN Document Server

    Vandendriessche, Eric

    2015-01-01

    This book addresses the mathematical rationality contained in the making of string figures. It does so by using interdisciplinary methods borrowed from anthropology, mathematics, history and philosophy of mathematics. The practice of string figure-making has long been carried out in many societies, and particularly in those of oral tradition. It consists in applying a succession of operations to a string (knotted into a loop), mostly using the fingers and sometimes the feet, the wrists or the mouth. This succession of operations is intended to generate a final figure. The book explores differ

  6. Gravity from strings

    International Nuclear Information System (INIS)

    Deser, S.

    1987-01-01

    We obtain the Einstein action plus quadratic curvature corrections generated by closed bosonic, heterotic and supersymmetric strings by matching the four-graviton amplitude (to first order in the slope parameter and fourth power of momenta) with an effective local gravitational action. The resulting corrections are first shown to be of the Gauss-Bonnet form. It is then noted that, by the very nature of the slope expansion, the field-redefinition theorem applies. Consequently, only the curvature-squared term is determined, while squares of its contractions are explicitly seen not to contribute. This latter property has a generalization to all orders which implies that the effective gravitational action is unavoidably ghost-free. The properties of solutions to these corrected theories are then examined. First neglecting dilatons, we find the explicit 'Schwarzschild' metrics. Both asymptotically flat and de Sitter solutions are present. The latter are however shown to be unstable. The former have horizons and singularities which are respectively smaller and less violent than in Einstein gravity; the correct sign of the slope parameter also ensures absence of naked singularities. When dilatons are included, the cosmological vacua are gratifyingly excluded. (orig.)

  7. Observational constraints on the types of cosmic strings

    International Nuclear Information System (INIS)

    Sazhina, Olga S.; Sazhin, Mikhail V.; Scognamiglio, Diana

    2014-01-01

    This paper is aimed at setting observational limits to the number of cosmic strings (Nambu-Goto, Abelian-Higgs, semilocal) and other topological defects (textures). Radio maps of CMB anisotropy, provided by the space mission Planck for various frequencies, were filtered and then processed by the method of convolution with modified Haar functions (MHF) to search for cosmic string candidates. This method was designed to search for solitary strings, without additional assumptions as regards the presence of networks of such objects. The sensitivity of the MHF method is δT ∼ 10 μK in a background of δT ∼ 100 μK. The comparison of these with previously known results on search string network shows that strings can only be semilocal in the range of 1 / 5, with the upper restriction on individual string tension (linear density) of Gμ/c 2 ≤ 7.36 x 10 -7 . The texture model is also legal. There are no strings with Gμ/c 2 > 7.36 x 10 -7 . However, a comparison with the data for the search of non-Gaussian signals shows that the presence of several (up to three) Nambu-Goto strings is also possible. For Gμ/c 2 ≤ 4.83 x 10 -7 the MHF method is ineffective because of unverifiable spurious string candidates. Thus the existence of strings with tensions Gμ/c 2 ≤ 4.83 x 10 -7 is not prohibited but it is beyond the Planck data possibilities. The same string candidates have been found in the WMAP 9-year data. Independence of Planck and WMAP data sets serves as an additional argument to consider those string candidates as very promising. However, the final proof should be given by optical deep surveys. (orig.)

  8. Gauge and general covariance of string interactions

    International Nuclear Information System (INIS)

    Das, S.R.

    1986-01-01

    All fundamental interactions at observable energies seem to arise out of local symmetries - gauge invariances and general coordinate invariance. In usual field theories of point particles these invariances are postulated a priori: the idea is to deduce everything else from the symmetry group and the representation content of the matter fields. In string theories, the situation is rather different. Here the basic principle is reparametrization invariance on the world sheet swept out by the string. The authors consider the simplest string models-those defined on flat Minkowski space-time. The transverse oscillations of the string lead to an infinite tower of modes which may be thought of as the ''particles'' constituting the string. The interacting string theory is defined, in the first quantized formulation, by specifying the interaction of these modes with the string. These interaction vertices must satisfy a basic requirement: when any dual amplitude is factorized only physical states (i.e. those satisfying the Virasoro conditions) must occur as on-mass-shell intermediate states. This means that the vertices respect the reparametrization invariance of the world sheet, since it is this symmetry which eliminates ghost states by virtue of Virasoro conditions

  9. A Platonic Sextet for Strings

    Science.gov (United States)

    Schaffer, Karl

    2012-01-01

    The use of traditional string figures by the Dr. Schaffer and Mr. Stern Dance Ensemble led to experimentation with polyhedral string constructions. This article presents a series of polyhedra made with six loops of three colors which sequence through all the Platonic Solids.

  10. Ultrasensitive string-based temperature sensors

    DEFF Research Database (Denmark)

    Larsen, Tom; Schmid, Silvan; Gronberg, L.

    2011-01-01

    Resonant strings are a promising concept for ultra sensitive temperature detection. We present an analytical model for the sensitivity with which we optimize the temperature response of resonant strings by varying geometry and material. The temperature sensitivity of silicon nitride and aluminum ...

  11. The string prediction models as invariants of time series in the forex market

    Science.gov (United States)

    Pincak, R.

    2013-12-01

    In this paper we apply a new approach of string theory to the real financial market. The models are constructed with an idea of prediction models based on the string invariants (PMBSI). The performance of PMBSI is compared to support vector machines (SVM) and artificial neural networks (ANN) on an artificial and a financial time series. A brief overview of the results and analysis is given. The first model is based on the correlation function as invariant and the second one is an application based on the deviations from the closed string/pattern form (PMBCS). We found the difference between these two approaches. The first model cannot predict the behavior of the forex market with good efficiency in comparison with the second one which is, in addition, able to make relevant profit per year. The presented string models could be useful for portfolio creation and financial risk management in the banking sector as well as for a nonlinear statistical approach to data optimization.

  12. IDE Support of String-Embedded Languages

    Directory of Open Access Journals (Sweden)

    S. Grigorev

    2014-01-01

    Full Text Available Complex information systems are often implemented by using more than one programming language. Sometimes this variety takes a form of one host and one or few string-embedded languages. Textual representation of clauses in a string-embedded language is built at run time by a host program and then analyzed, compiled or interpreted by a dedicated runtime component (database, web browser etc. Most general-purpose programming languages may play the role of the host; one of the most evident examples of the string-embedded language is the dynamic SQL which was specified in ISO SQL standard and is supported by the majority of DBMS. Standard IDE functionality such as code completion or syntax highlighting can really helps the developers who use this technique. There are several tools providing this functionality, but they all process only one concrete string-embedded language and cannot be easily extended for supporting another language. We present a platform which allows to easily create tools for string-embedded language processing.

  13. Electric magnetic duality in string theory

    International Nuclear Information System (INIS)

    Sen, A.

    1992-07-01

    The electric-magnetic duality transformation in four dimensional heterotic string theory discussed by Shapere, Trivedi and Wilczek is shown to be an exact symmetry of the equations of motion of low energy effective field theory even after including the scalar and the vector fields, arising due to compactification, in the effective field theory. Using this duality transformation we construct rotating black hole solutions in the effective field theory carrying both electric and magnetic charges. The spectrum of extremal magnetically charged black holes turn out to be similar to that of electrically charged elementary string excitations lying on the leading Regge trajectory. We also discuss the possibility that the duality symmetry is an exact symmetry of the full string theory under which electrically charged elementary string excitations get exchanged with magnetically charged soliton like solutions. This proposal might be made concrete following the suggestion of Dabholkar et. al. that fundamental strings may be regarded as soliton like classical solutions in the effective field theory. (author). 20 refs

  14. String theory or field theory?

    International Nuclear Information System (INIS)

    Marshakov, A.V.

    2002-01-01

    The status of string theory is reviewed, and major recent developments - especially those in going beyond perturbation theory in the string theory and quantum field theory frameworks - are analyzed. This analysis helps better understand the role and place of experimental phenomena, it is emphasized that there are some insurmountable problems inherent in it - notably the impossibility to formulate the quantum theory of gravity on its basis - which prevent it from being a fundamental physical theory of the world of microscopic distances. It is this task, the creation of such a theory, which string theory, currently far from completion, is expected to solve. In spite of its somewhat vague current form, string theory has already led to a number of serious results and greatly contributed to progress in the understanding of quantum field theory. It is these developments, which are our concern in this review [ru

  15. Topological Strings and Integrable Hierarchies

    CERN Document Server

    Aganagic, M; Klemm, A D; Marino, M; Vafa, C; Aganagic, Mina; Dijkgraaf, Robbert; Klemm, Albrecht; Marino, Marcos; Vafa, Cumrun

    2006-01-01

    We consider the topological B-model on local Calabi-Yau geometries. We show how one can solve for the amplitudes by using W-algebra symmetries which encodes the symmetries of holomorphic diffeomorphisms of the Calabi-Yau. In the highly effective fermionic/brane formulation this leads to a free fermion description of the amplitudes. Furthermore we argue that topological strings on Calabi-Yau geometries provide a unifying picture connecting non-critical (super)strings, integrable hierarchies, and various matrix models. In particular we show how the ordinary matrix model, the double scaling limit of matrix models, and Kontsevich-like matrix model are all related and arise from studying branes in specific local Calabi-Yau three-folds. We also show how A-model topological string on P^1 and local toric threefolds (and in particular the topological vertex) can be realized and solved as B-model topological string amplitudes on a Calabi-Yau manifold.

  16. Rotating and orbiting strings in Dp-brane background

    Energy Technology Data Exchange (ETDEWEB)

    Biswas, Sagar; Panigrahi, Kamal L. [Department of Physics, Indian Institute of Technology Kharagpur,721302, Kharagpur (India)

    2015-03-04

    We probe the open fundamental strings in Dp-brane (p=1, 3, 5) backgrounds and find new classes of rotating and orbiting string solutions. We show that for various worldsheet embedding ansatz we get solutions of the string equations of motion that correspond to the well known giant magnon and single spikes, in addition to few new solutions corresponding to the orbiting strings. We make a systematic study of both rigidly rotating and orbiting strings in D1, D3 and D5-brane backgrounds.

  17. Fast Arc-Annotated Subsequence Matching in Linear Space

    DEFF Research Database (Denmark)

    Bille, Philip; Gørtz, Inge Li

    2010-01-01

    is deleted any arc with an endpoint in that base is also deleted. Arc-annotated strings where the arcs are "nested" are a natural model of RNA molecules that captures both the primary and secondary structure of these. The arc-preserving subsequence problem for nested arc-annotated strings is basic primitive...... for investigating the function of RNA molecules. Gramm et al. [ACM Trans. Algorithms 2006] gave an algorithm for this problem using O(nm) time and space, where m and n are the lengths of P and Q, respectively. In this paper we present; a new algorithm using O(nm) time and O(n+m,) space, thereby matching...... the previous time bound while significantly reducing the space from a quadratic term to linear. This is essential to process large RNA molecules where the space is a likely to be a bottleneck. To obtain our result we introduce several novel ideas which may be of independent interest for related problems on arc...

  18. Bonder for Solar-Cell Strings

    Science.gov (United States)

    Garwood, G.; Frasch, W.

    1982-01-01

    String bonder for solar-cell arrays eliminates tedious manual assembly procedure that could damage cell face. Vacuum arm picks up face-down cell from cell-inverting work station and transfers it to string conveyor without changing cell orientation. Arm is activated by signal from microprocessor.

  19. Deformations of topological open strings

    NARCIS (Netherlands)

    Hofman, C.; Ma, Whee Ky

    Deformations of topological open string theories are described, with an emphasis on their algebraic structure. They are encoded in the mixed bulk-boundary correlators. They constitute the Hochschild complex of the open string algebra - the complex of multilinear maps on the boundary Hilbert space.

  20. Symmetries and Interactions in Matrix String Theory

    NARCIS (Netherlands)

    Hacquebord, F.H.

    1999-01-01

    This PhD-thesis reviews matrix string theory and recent developments therein. The emphasis is put on symmetries, interactions and scattering processes in the matrix model. We start with an introduction to matrix string theory and a review of the orbifold model that flows out of matrix string theory

  1. String dynamics in QCD

    International Nuclear Information System (INIS)

    Gervais, J.L.; Neveu, A.

    1980-01-01

    Recent works of the authors on string interpretation of the Wilson loop operators in QCD are reviewed in a self-contained fashion. Although most of the results habe already appeared in print, some new material is presented in renormalization of the Wilson loop operator and on the use of light-cone expansion to derive a linear string-like equation in light-cone formalism. (orig.)

  2. Perturbative string theory in BRST invariant formalism

    International Nuclear Information System (INIS)

    Di Vecchia, P.; Hornfeck, K.; Frau, M.; Lerda, A.

    1988-01-01

    In this talk we present a constructive and very explicit way of calculating multiloop amplitudes in string theories. The main ingredients are the BRST invariant N String Vertex and the BRST invariant twisted propagator. This approach naturally leads to the Schottky parametrization of moduli space in terms of multipliers and fixed points of the g projective transformations which characterize a Riemann surface of genus g. The complete expression (including measure) of the multiloop corrections to the N String Vertex for the bosonic string is exhibited. (orig.)

  3. String-mediated electroweak baryogenesis a critical analysis

    CERN Document Server

    Cline, J M; Moore, G D; Riotto, Antonio; Cline, Jim; Espinosa, Jose; Moore, Guy D.; Riotto, Antonio

    1999-01-01

    We study the scenario of electroweak baryogenesis mediated by nonsuperconducting cosmic strings. This idea relies upon electroweak symmetry being restored in a region around the core of the topological defect so that, within this region, the rate of baryon number violation is enhanced. We compute numerically how effectively baryon number is violated along a cosmic string, at an epoch when the baryon number violation rate elsewhere is negligible. We show that B-violation along nonsuperconducting strings is quite inefficient. When proper accounting is taken of the velocity dependence of the baryon number production by strings, it proves too small to explain the observed abundance by at least ten orders of magnitude, whether the strings are in the friction dominated or the scaling regime.

  4. Field theory of relativistic strings: I. Trees

    International Nuclear Information System (INIS)

    Kaku, M.; Kikkawa, K.

    1985-01-01

    The authors present an entirely new kind of field theory, a field theory quantized not at space-time points, but quantized along an extended set of multilocal points on a string. This represents a significant departure from the usual quantum field theory, whose free theory represents a definite set of elementary particles, because the field theory on relativistic strings can accommodate an infinite set of linearly rising Regge trajectories. In this paper, the authors (1) present canonical quantization and the Green's function of the free string, (2) introduce three-string interactions, (3) resolve the question of multiple counting, (4) complete the counting arguments for all N-point trees, and (5) introduce four-string interactions which yield a Yang-Mills structure when the zero-slope limit is taken

  5. Gravitational effects of cosmic strings in Friedmann universes

    International Nuclear Information System (INIS)

    Veeraraghavan, S.

    1988-01-01

    Cosmic strings have been invoked recently as a possible source of the primordial density fluctuations in matter which gave rise to large-scale structure by the process of gravitational collapse. If cosmic strings did indeed seed structure formation then they would also leave an observable imprint upon the microwave and gravitational wave backgrounds, and upon structure on the very largest scales. In this work, the energy-momentum tensor appropriate to a cosmic string configuration in the flat Friedmann universe is first obtained and then used in the linearized Einstein equations to obtain the perturbations of the background space-time and the ambient matter. The calculation is full self-consistent to linear order because it takes into account compensation, or the response of the ambient matter density field to the presence of the string configuration, and is valid for an arbitrarily curved and moving configuration everywhere except very close to a string segment. The single constraint is that the dimensionless string tension Gμ/c 2 must be small compared to unity, but this condition is satisfied in any theory that leads to strings of cosmological relevance. The gravitational wave spectrum and the microwave background temperature fluctuations from a single infinite straight and static string are calculated. The statistically expected fluctuations from an ensemble of such strings with a mean density equal to that found in computer simulations of the evolution of string networks is also calculated. These fluctuations are compared with the observational data on the microwave background to constrain Gμ. Lastly, the role of infinite strings in the formation of the large-scale structure on scales of tens of Megaparsecs observed in deep redshift surveys is examined

  6. String Theory in a Nutshell

    International Nuclear Information System (INIS)

    Skenderis, Kostas

    2007-01-01

    The book 'String Theory in a Nutshell' by Elias Kiritsis provides a comprehensive introduction to modern string theory. String theory is the leading candidate for a theory that successfully unifies all fundamental forces of nature, including gravity. The subject has been continuously developing since the early 1970s, with classic textbooks on the subject being those of Green, Schwarz and Witten (1987) and Polchinski (1998). Since the latter was published there have been substantial developments, in particular in understanding black holes and gravity/gauge theory dualities. A textbook treatment of this important material is clearly needed, both by students and researchers in string theory and by mathematicians and physicists working in related fields. This book has a good selection of material, starting from basics and moving into classic and modern topics. In particular, Kiritsis' presentation of the basic material is complementary to that of the earlier textbooks and he includes a number of topics which are not easily found or covered adequately elsewhere, for example, loop corrections to string effective couplings. Overall the book nicely covers the major advances of the last ten years, including (non-perturbative) string dualities, black hole physics, AdS/CFT and matrix models. It provides a concise but fairly complete introduction to these subjects which can be used both by students and by researchers. Moreover the emphasis is on results that are reasonably established, as is appropriate for a textbook; concise summaries are given for subjects which are still in flux, with references to relevant reviews and papers. A positive feature of the book is that the bibliography sections at the end of each chapter provide a comprehensive guide to the literature. The bibliographies point to reviews and pedagogical papers on subjects covered in this book as well as those that were omitted. It is rare for a textbook to contain such a self-contained and detailed guide to

  7. Perceiving the affordance of string tension for power strokes in badminton: expertise allows effective use of all string tensions.

    Science.gov (United States)

    Zhu, Qin

    2013-01-01

    Affordances mean opportunities for action. These affordances are important for sports performance and relevant to the abilities developed by skilled athletes. In racquet sports such as badminton, different players prefer widely different string tension because it is believed to provide opportunities for effective strokes. The current study examined whether badminton players can perceive the affordance of string tension for power strokes and whether the perception of affordance itself changed as a function of skill level. The results showed that string tension constrained the striking performance of both novice and recreational players, but not of expert players. When perceptual capability was assessed, perceptual mode did not affect perception of the optimal string tension. Skilled players successfully perceived the affordance of string tension, but only experts were concerned about saving energy. Our findings demonstrated that perception of the affordance of string tension in badminton was determined by action abilities. Furthermore, experts could adjust the action to maintain a superior level of performance based on the perception of affordance.

  8. String Theory Volume 1: An Introduction to the Bosonic String and Volume 2: Superstring Theory and Beyond

    Energy Technology Data Exchange (ETDEWEB)

    Carlip, S [Department of Physics, University of California, Davis, CA 95616 (United States)

    2006-10-21

    The early 1980s, when I first learned theory, were desperate times for graduate students. We searched frantically for coherent introductions, passing tattered copies of review articles around like samizdat, struggling over obscure references to ancient models of strong interactions, and flocking to lectures-not least those by Joe Polchinski-that promised to really explain what was going on. If only this book had been around, it would have saved much grief. Volume I, The Bosonic String, offers a clear and well organized introduction to bosonic string theory. Topics range from the 'classical' (spectra, vertex operators, consistency conditions, etc.) to the 'modern' (D-branes first appear in an exercise at the end of chapter 1, noncommutative geometry shows up in chapter 8). Polchinski does not hesitate to discuss sophisticated matters-path integral measures, BRST symmetries, etc.-but his approach is pedagogical, and his writing is lucid, if sometimes a bit terse. Chapters end with problems that are sometimes difficult but never impossible. A very useful annotated bibliography directs readers to resources for further study, and a nearly 30-page glossary provides short but clear definitions of key terms. There is much here that will appeal to relativists. Polchinski uses the covariant Polyakov path integral approach to quantization from early on; he clearly distinguishes Weyl invariance from conformal invariance; he is appropriately careful about using complex coordinates on topologically nontrivial manifolds; he keeps the string world sheet metric explicit at the start instead of immediately hiding it by a gauge choice. Volume II includes an elegant introduction to anticommuting coordinates and superconformal transformations. A few conventions may cause confusion-%, Polchinski's stress-energy tensor, for instance, differs from the standard general relativistic definition by a factor of -2{pi}, and while this is briefly mentioned in the text

  9. The tension as perturbative parameter in string theory

    International Nuclear Information System (INIS)

    Gamboa, J.

    1990-01-01

    We propose an approach to string theory where the zero theory is the null string. We find an explicit form of the propagator for the null string in the momentum space. We show that considering the tension as perturbative parameter, the perturbative series is completely summable and we find the propagator of the bosonic open string with tension T. (author) [pt

  10. The issue of supersymmetry breaking in strings

    International Nuclear Information System (INIS)

    Binetruy, P.

    1989-12-01

    We discuss the central role that supersymmetry plays in string models, both in spacetime and at the level of the string world-sheet. The problems associated with supersymmetry-breaking are reviewed together with some of the attempts to solve them, in the string as well as the field theory approach

  11. Apparatus and method for vibrating a casing string during cementing

    International Nuclear Information System (INIS)

    Rankin, R.E.; Rankin, K.T.

    1992-01-01

    This patent describes a method of cementing a string of casing in a well. It comprises: securing a vibrating device into the string of casing near the lower end of the string of casing; lowering the string of casing into the well to the desired depth; pumping a cement slurry down the string of casing; causing a portion of the cement slurry being pumped down the string of casing to vibrate the vibrating device; and wherein the vibrating device is secured in the string of casing by cementing the vibrating device within a sub, then securing the sub into the string of casing prior to lowering the string of casing into the well

  12. Tensor constructions of open string theories. I. Foundations

    International Nuclear Information System (INIS)

    Gaberdiel, M.R.; Zwiebach, B.

    1997-01-01

    The possible tensor constructions of open string theories are analyzed from first principles. To this end the algebraic framework of open string field theory is clarified, including the role of the homotopy associative A ∞ algebra, the odd symplectic structure, cyclicity, star conjugation, and twist. It is also shown that two string theories are off-shell equivalent if the corresponding homotopy associative algebras are homotopy equivalent in a strict sense. It is demonstrated that a homotopy associative star algebra with a compatible even bilinear form can be attached to an open string theory. If this algebra does not have a space-time interpretation, positivity and the existence of a conserved ghost number require that its cohomology is at degree zero, and that it has the structure of a direct sum of full matrix algebras. The resulting string theory is shown to be physically equivalent to a string theory with a familiar open string gauge group. (orig.)

  13. BPS dynamics of the triple (p,q) string junction

    International Nuclear Information System (INIS)

    Rey, S.-J.; Yee, J.-T.

    1998-01-01

    We study the dynamics of the triple junction of (p,q) strings in type IIB string theory. We probe the tension and mass density of (p,q) strings by studying harmonic fluctuations of the triple junction. We show that they agree perfectly with the BPS formula provided a suitable geometric interpretation of the junction is given. We provide a precise statement of the BPS limit and force-balance property. At weak coupling and sufficiently dense limit, we argue that a (p,q) string embedded in the string network is a 'wiggly string', whose low-energy dynamics can be described via a renormalization group evolved, smooth effective non-relativistic string. We also suggest the possibility that, upon type IIB strings being promoted to the M-theory membrane, there can exist 'evanescent' bound-states at the triple junction in the continuum. (orig.)

  14. Diffusion of massive particles around an Abelian-Higgs string

    Science.gov (United States)

    Saha, Abhisek; Sanyal, Soma

    2018-03-01

    We study the diffusion of massive particles in the space time of an Abelian Higgs string. The particles in the early universe plasma execute Brownian motion. This motion of the particles is modeled as a two dimensional random walk in the plane of the Abelian Higgs string. The particles move randomly in the space time of the string according to their geodesic equations. We observe that for certain values of their energy and angular momentum, an overdensity of particles is observed close to the string. We find that the string parameters determine the distribution of the particles. We make an estimate of the density fluctuation generated around the string as a function of the deficit angle. Though the thickness of the string is small, the length is large and the overdensity close to the string may have cosmological consequences in the early universe.

  15. Confinement and strings in MQCD

    International Nuclear Information System (INIS)

    Hanany, A.; Strassler, M.J.; Zaffaroni, A.

    1998-01-01

    We study aspects of confinement in the M-theory fivebrane version of QCD (MQCD). We show heavy quarks are confined in hadrons (which take the form of membrane-fivebrane bound states) for N=1 and softly broken N=2 SU(N) MQCD. We explore and clarify the transition from the exotic physics of the latter to the standard physics of the former. In particular, the many strings and quark-antiquark mesons found in N=2 field theory by Douglas and Shenker are reproduced. It is seen that in the N=1 limit all but one such meson disappears while all of the strings survive. The strings of softly broken N=2, N=1, and even non-supersymmetric SU(N) MQCD have a common ratio for their tensions as a function of the amount of flux they carry. We also comment on the almost BPS properties of the Douglas-Shenker strings and discuss the brane picture for monopole confinement on N=2 QCD Higgs branches. (orig.)

  16. String Formation Beyond Leading Colour

    CERN Document Server

    Christiansen, Jesper R.

    2015-08-03

    We present a new model for the hadronisation of multi-parton systems, in which colour correlations beyond leading $N_C$ are allowed to influence the formation of confining potentials (strings). The multiplet structure of $SU(3)$ is combined with a minimisation of the string potential energy, to decide between which partons strings should form, allowing also for "baryonic" configurations (e.g., two colours can combine coherently to form an anticolour). In $e^+e^-$collisions, modifications to the leading-colour picture are small, suppressed by both colour and kinematics factors. But in $pp$ collisions, multi-parton interactions increase the number of possible subleading connections, counteracting their naive $1/N_C^2$ suppression. Moreover, those that reduce the overall string lengths are kinematically favoured. The model, which we have implemented in the PYTHIA 8 generator, is capable of reaching agreement not only with the important $\\left(n_\\mathrm{charged})$ distribution but also with measured rates (and ra...

  17. Relativistic string dynamics and its connection with hadron physics

    International Nuclear Information System (INIS)

    Barbashov, B.M.; Nesterenko, V.V.

    1976-01-01

    Physical reasons for using the relativistic string as a hadron model are briefly discussed. The classical and quantum dynamics of the string which is the first example of a relativistic elongated object are presented. The connection between the string and the dual-resonance models, together with the Born-Infeld field model is indicated. As it turned out from the study of the string behaviour in a constant electromagnetic field, even in the classical theory states with the negative square of the string mass - tachyons - appear. As an illustration, a series of examples of classical motion of a free string and a string in an external electromagnetic field from a given initial state is presented

  18. Efficient privacy-preserving string search and an application in genomics.

    Science.gov (United States)

    Shimizu, Kana; Nuida, Koji; Rätsch, Gunnar

    2016-06-01

    Personal genomes carry inherent privacy risks and protecting privacy poses major social and technological challenges. We consider the case where a user searches for genetic information (e.g. an allele) on a server that stores a large genomic database and aims to receive allele-associated information. The user would like to keep the query and result private and the server the database. We propose a novel approach that combines efficient string data structures such as the Burrows-Wheeler transform with cryptographic techniques based on additive homomorphic encryption. We assume that the sequence data is searchable in efficient iterative query operations over a large indexed dictionary, for instance, from large genome collections and employing the (positional) Burrows-Wheeler transform. We use a technique called oblivious transfer that is based on additive homomorphic encryption to conceal the sequence query and the genomic region of interest in positional queries. We designed and implemented an efficient algorithm for searching sequences of SNPs in large genome databases. During search, the user can only identify the longest match while the server does not learn which sequence of SNPs the user queried. In an experiment based on 2184 aligned haploid genomes from the 1000 Genomes Project, our algorithm was able to perform typical queries within [Formula: see text] 4.6 s and [Formula: see text] 10.8 s for client and server side, respectively, on laptop computers. The presented algorithm is at least one order of magnitude faster than an exhaustive baseline algorithm. https://github.com/iskana/PBWT-sec and https://github.com/ratschlab/PBWT-sec shimizu-kana@aist.go.jp or Gunnar.Ratsch@ratschlab.org Supplementary data are available at Bioinformatics online. © The Author 2016. Published by Oxford University Press.

  19. Sigma models and renormalization of string loops

    International Nuclear Information System (INIS)

    Tseytlin, A.A.

    1989-05-01

    An extension of the ''σ-model β-functions - string equations of motion'' correspondence to the string loop level is discussed. Special emphasis is made on how the renormalization group acts in string loops and, in particular, on the renormalizability property of the generating functional Z-circumflex for string amplitudes (related to the σ model partition function integrated over moduli). Renormalization of Z-circumflex at one and two loop order is analyzed in some detail. We also discuss an approach to renormalization based on operators of insertion of topological fixtures. (author). 70 refs

  20. Non-perturbative topological strings and conformal blocks

    NARCIS (Netherlands)

    Cheng, M.C.N.; Dijkgraaf, R.; Vafa, C.

    2011-01-01

    We give a non-perturbative completion of a class of closed topological string theories in terms of building blocks of dual open strings. In the specific case where the open string is given by a matrix model these blocks correspond to a choice of integration contour. We then apply this definition to

  1. Open Wilson lines as states of closed string

    International Nuclear Information System (INIS)

    Murakami, Koichi; Nakatsu, Toshio

    2003-01-01

    A system of a D-brane in bosonic string theory on a constant B field background is studied in order to obtain further insight into the bulk-boundary duality. Boundary states which describe arbitrary numbers of open-string tachyons and gluons are given. The UV behavior of field theories on the non-commutative world-volume is investigated by using these states. We take the zero-slope limits of the generating functions of one-loop amplitudes of gluons (and open-string tachyons) in which the region of the small open-string proper time is magnified. The existence of a B field allows the limits to be slightly different from the standard field theory limits of a closed-string. These limits enable us to obtained world-volume theories at a trans-string scale. In this limit the generating functions are shown to be factorized into two curved open Wilson lines (and their analogues) and become integrals on the space of paths with a Gaussian distribution around straight lines. These facts indicate the possibility that field theories on the non-commutative world-volume are topological at such a trans-string scale. We also give a proof of the Dhar-Kitazawa conjecture by determining an explicit correspondence between the closed-string states and the paths. Momentum eigenstates of closed-string or momentum loops also play an important role in these analyses. (author)

  2. A Yang-Mills structure for string field theory

    International Nuclear Information System (INIS)

    Tsousheung Tsun

    1990-01-01

    String theorists believe that one way to achieve a fully quantized theory of string is through string field theory. The other way is to study conformal field theory on Riemann surfaces of different genera, which is the subject of many of the talks at this Conference. In a way, string field theory is the more conservative approach, since it aims just to replace the spacetime points of conventional quantum field theory by string, which are extended objects. However, from this point of view string theory has one rather unsatisfactory aspect, in the sense that although it has been very well developed and minutely studied, we are still rather unclear about its basic structure. We can contrast this to both general relativity, which is based on the geometry of spacetime, and to gauge theory, which is about the structure of various natural bundles over spacetime. And yet string theory is supposed to embody both these two essentially geometric theories. To paraphrase Witten, in string theory we seem to have to work backwards to get at the still unknown basic structure. Some joint work with Chan Hong-Mo is reported in an attempt to gain some understanding in that general direction. It seems that one could in some sense consider string field theory as a generalized Yang-Mills theory. This idea is explored. (author)

  3. String Theory Volume 1: An Introduction to the Bosonic String and Volume 2: Superstring Theory and Beyond

    International Nuclear Information System (INIS)

    Carlip, S

    2006-01-01

    The early 1980s, when I first learned theory, were desperate times for graduate students. We searched frantically for coherent introductions, passing tattered copies of review articles around like samizdat, struggling over obscure references to ancient models of strong interactions, and flocking to lectures-not least those by Joe Polchinski-that promised to really explain what was going on. If only this book had been around, it would have saved much grief. Volume I, The Bosonic String, offers a clear and well organized introduction to bosonic string theory. Topics range from the 'classical' (spectra, vertex operators, consistency conditions, etc.) to the 'modern' (D-branes first appear in an exercise at the end of chapter 1, noncommutative geometry shows up in chapter 8). Polchinski does not hesitate to discuss sophisticated matters-path integral measures, BRST symmetries, etc.-but his approach is pedagogical, and his writing is lucid, if sometimes a bit terse. Chapters end with problems that are sometimes difficult but never impossible. A very useful annotated bibliography directs readers to resources for further study, and a nearly 30-page glossary provides short but clear definitions of key terms. There is much here that will appeal to relativists. Polchinski uses the covariant Polyakov path integral approach to quantization from early on; he clearly distinguishes Weyl invariance from conformal invariance; he is appropriately careful about using complex coordinates on topologically nontrivial manifolds; he keeps the string world sheet metric explicit at the start instead of immediately hiding it by a gauge choice. Volume II includes an elegant introduction to anticommuting coordinates and superconformal transformations. A few conventions may cause confusion-%, Polchinski's stress-energy tensor, for instance, differs from the standard general relativistic definition by a factor of -2π, and while this is briefly mentioned in the text, it could easily be missed

  4. Confusing the heterotic string

    Science.gov (United States)

    Benett, D.; Brene, N.; Mizrachi, Leah; Nielsen, H. B.

    1986-10-01

    A confusion mechanism is proposed as a global modification of the heterotic string model. It envolves a confusion hypersurface across which the two E 8's of the heterotic string are permuted. A remarkable numerical coincidence is found which prevents an inconsistency in the model. The low energy limit of this theory (after compactification) is typically invariant under one E 8 only, thereby removing the shadow world from the original model.

  5. Manipulating Strings in Python

    Directory of Open Access Journals (Sweden)

    William J. Turkel

    2012-07-01

    Full Text Available This lesson is a brief introduction to string manipulation techniques in Python. Knowing how to manipulate strings plays a crucial role in most text processing tasks. If you’d like to experiment with the following lessons, you can write and execute short programs as we’ve been doing, or you can open up a Python shell / Terminal to try them out on the command line.

  6. Pre-geometrical field theory of the open string

    International Nuclear Information System (INIS)

    Nojiri, M.M.; Nojiri, Shin'ichi

    1988-01-01

    We propose a gauge invariant, background independent string action, which contains open and closed string fields and no kinetic terms. The kinetic term is generated through the condensation of the string fields, which is the solution of the equations of motion. We solve the equations and show that the action is classically equivalent to the open string action proposed by Hata et al. (orig.)

  7. Cool Runnings For String 2

    CERN Multimedia

    2001-01-01

    String 2 is a series of superconducting magnets that are prototypes of those which will be installed in the LHC. It was cooled down to 1.9 Kelvin on September 14th. On Thursday last week, the dipoles of String 2 were successfully taken to nominal current, 11850 A.

  8. Symmetry breaking in string theory

    International Nuclear Information System (INIS)

    Potting, R.

    1998-01-01

    A mechanism for a spontaneous breakdown of CPT symmetry appears in string theory, with possible implications for particle models. A realistic string theory might exhibit CPT violation at levels detectable in current or future experiments. A possible new mechanism for baryogenesis in the early Universe is also discussed

  9. Complex world-sheets from N=2 strings

    International Nuclear Information System (INIS)

    Barbon, J.L.F.

    1996-01-01

    We study some properties of target space strings constructed from (2,1) heterotic strings. We argue that world-sheet complexification is a general property of the bosonic sector of such target world-sheets. We give a target space interpretation of this fact and relate it to the non-gaussian nature of free string field theory. We provide several one-loop calculations supporting the stringy construction of critical world-sheets in terms of (2,1) models. Using finite-temperature boundary conditions in the underlying (2,1) string we obtain non-chiral target space spin structures, and point out some of the problems arising for chiral spin structures, such as the heterotic world-sheet. To this end, we study the torus partition function of the corresponding asymmetric orbifold of the (2,1) string. (orig.)

  10. Extended Galilean symmetries of non-relativistic strings

    Energy Technology Data Exchange (ETDEWEB)

    Batlle, Carles [Departament de Matemàtiques and IOC, Universitat Politècnica de Catalunya, EPSEVG,Av. V. Balaguer 1, E-08808 Vilanova i la Geltrú (Spain); Gomis, Joaquim; Not, Daniel [Departament de Física Quàntica i Astrofísica and Institut de Ciències del Cosmos (ICCUB),Universitat de Barcelona,Martí i Franquès 1, E-08028 Barcelona (Spain)

    2017-02-09

    We consider two non-relativistic strings and their Galilean symmetries. These strings are obtained as the two possible non-relativistic (NR) limits of a relativistic string. One of them is non-vibrating and represents a continuum of non-relativistic massless particles, and the other one is a non-relativistic vibrating string. For both cases we write the generator of the most general point transformation and impose the condition of Noether symmetry. As a result we obtain two sets of non-relativistic Killing equations for the vector fields that generate the symmetry transformations. Solving these equations shows that NR strings exhibit two extended, infinite dimensional space-time symmetries which contain, as a subset, the Galilean symmetries. For each case, we compute the associated conserved charges and discuss the existence of non-central extensions.

  11. Specifications for Managed Strings, Second Edition

    Science.gov (United States)

    2010-05-01

    const char * cstr , const size_t maxsize, const char *charset); 10 | CMU/SEI-2010-TR-018 Runtime-Constraints s shall not be a null pointer...strcreate_m function creates a managed string, referenced by s, given a conventional string cstr (which may be null or empty). maxsize specifies the...characters to those in the null-terminated byte string cstr (which may be empty). If charset is a null pointer, no restricted character set is defined. If

  12. Cosmological string theory with thermal energy

    International Nuclear Information System (INIS)

    Shiraishi, Kiyoshi.

    1988-09-01

    An attempt to construct a cosmological scenario directly from string theory is made. Cosmological string theory was presented by Antoniadis, Bachas, Ellis and Nanopoulos. They also expect loop effects on cosmological string theory. In this paper, we point out the other importance of the one-loop effect, the finite temperature effect. The equations of motion for background geometry at finite temperature is given. We address a problem on derivation of the effective action at non-zero temperature. (author)

  13. Note on closed-string interactions a la Witten

    Energy Technology Data Exchange (ETDEWEB)

    Romans, L.J.

    1987-08-20

    We consider the problem of formulating a field theory of interacting closed strings analogous to Witten's open-string field theory. Two natural candidates have been suggested for an off-shell three-string interaction vertex: one scheme involves a cyclic geometric overlap in spacetime, while the other is obtained by 'stuttering' the Fock-space realization of the open-string vertex. We demonstrate that these two approaches are in fact equivalent, utilizing the operator formalism as developed to describe Witten's theory. Implications of this result for the construction of closed-string theories are briefly discussed.

  14. Continuing between closed and open strings

    International Nuclear Information System (INIS)

    Green, M.B.; Thorn, C.B.

    1991-01-01

    A family of dual models is defined that interpolates between the tree diagrams of non-orientable bosonic closed-string theory (which has a massless spin-2 state) and the open-string theory with no internal symmetry (in which the lowest-mass spin-2 state is massive). These models are parametrized by the intercept, Δ, of the leading Regge pole. The only models that have an infinite-dimensional conformal invariance and are consequently free of ghosts are the two familiar string theories with Δ=2 (closed strings) and Δ=1 (open strings with no internal symmetry). For arbitrary Δ the models are invariant under the finite dimensional conformal group, SO(Δ,2), which guarantees the crossing symmetry and consistent factorization of tree amplitudes. The spectrum of the level-two states is exhibited explicitly as Δ varies from 2 to 1 in order to illustrate the manner in which the graviton (the lowest-mass spin-2 state) acquires a mass. The scalar ghost generically associated with massive gravity cancels with the 'dilaton' precisely at Δ=1. (orig.)

  15. A note on probabilistic models over strings: the linear algebra approach.

    Science.gov (United States)

    Bouchard-Côté, Alexandre

    2013-12-01

    Probabilistic models over strings have played a key role in developing methods that take into consideration indels as phylogenetically informative events. There is an extensive literature on using automata and transducers on phylogenies to do inference on these probabilistic models, in which an important theoretical question is the complexity of computing the normalization of a class of string-valued graphical models. This question has been investigated using tools from combinatorics, dynamic programming, and graph theory, and has practical applications in Bayesian phylogenetics. In this work, we revisit this theoretical question from a different point of view, based on linear algebra. The main contribution is a set of results based on this linear algebra view that facilitate the analysis and design of inference algorithms on string-valued graphical models. As an illustration, we use this method to give a new elementary proof of a known result on the complexity of inference on the "TKF91" model, a well-known probabilistic model over strings. Compared to previous work, our proving method is easier to extend to other models, since it relies on a novel weak condition, triangular transducers, which is easy to establish in practice. The linear algebra view provides a concise way of describing transducer algorithms and their compositions, opens the possibility of transferring fast linear algebra libraries (for example, based on GPUs), as well as low rank matrix approximation methods, to string-valued inference problems.

  16. N=1 Mirror Symmetry and Open/Closed String Duality

    CERN Document Server

    Mayr, Peter

    2002-01-01

    We show that the exact N=1 superpotential of a class of 4d string compactifications is computed by the closed topological string compactified to two dimensions. A relation to the open topological string is used to define a special geometry for N=1 mirror symmetry. Flat coordinates, an N=1 mirror map for chiral multiplets and the exact instanton corrected superpotential are obtained from the periods of a system of differential equations. The result points to a new class of open/closed string dualities which map individual string world-sheets with boundary to ones without. It predicts an mathematically unexpected coincidence of the closed string Gromov-Witten invariants of one Calabi-Yau geometry with the open string invariants of the dual Calabi-Yau.

  17. Gauge coupling unification in realistic free-fermionic string models

    International Nuclear Information System (INIS)

    Dienes, K.R.; Faraggi, A.E.

    1995-01-01

    We discuss the unification of gauge couplings within the framework of a wide class of realistic free-fermionic string models which have appeared in the literature, including the flipped SU(5), SO(6)xSO(4), and various SU(3)xSU(2)xU(1) models. If the matter spectrum below the string scale is that of the Minimal Supersymmetric Standard Model (MSSM), then string unification is in disagreement with experiment. We therefore examine several effects that may modify the minimal string predictions. First, we develop a systematic procedure for evaluating the one-loop heavy string threshold corrections in free-fermionic string models, and we explicitly evaluate these corrections for each of the realistic models. We find that these string threshold corrections are small, and we provide general arguments explaining why such threshold corrections are suppressed in string theory. Thus heavy thresholds cannot resolve the disagreement with experiment. We also study the effect of non-standard hypercharge normalizations, light SUSY thresholds, and intermediate-scale gauge structure, and similarly conclude that these effects cannot resolve the disagreement with low-energy data. Finally, we examine the effects of additional color triplets and electroweak doublets beyond the MSSM. Although not required in ordinary grand unification scenarios, such states generically appear within the context of certain realistic free-fermionic string models. We show that if these states exist at the appropriate thresholds, then the gauge couplings will indeed unify at the string scale. Thus, within these string models, string unification can be in agreement with low-energy data. (orig.)

  18. Zero-point length from string fluctuations

    International Nuclear Information System (INIS)

    Fontanini, Michele; Spallucci, Euro; Padmanabhan, T.

    2006-01-01

    One of the leading candidates for quantum gravity, viz. string theory, has the following features incorporated in it. (i) The full spacetime is higher-dimensional, with (possibly) compact extra-dimensions; (ii) there is a natural minimal length below which the concept of continuum spacetime needs to be modified by some deeper concept. On the other hand, the existence of a minimal length (zero-point length) in four-dimensional spacetime, with obvious implications as UV regulator, has been often conjectured as a natural aftermath of any correct quantum theory of gravity. We show that one can incorporate the apparently unrelated pieces of information-zero-point length, extra-dimensions, string T-duality-in a consistent framework. This is done in terms of a modified Kaluza-Klein theory that interpolates between (high-energy) string theory and (low-energy) quantum field theory. In this model, the zero-point length in four dimensions is a 'virtual memory' of the length scale of compact extra-dimensions. Such a scale turns out to be determined by T-duality inherited from the underlying fundamental string theory. From a low energy perspective short distance infinities are cutoff by a minimal length which is proportional to the square root of the string slope, i.e., α ' . Thus, we bridge the gap between the string theory domain and the low energy arena of point-particle quantum field theory

  19. Experimenting with String Musical Instruments

    Science.gov (United States)

    LoPresto, Michael C.

    2012-01-01

    What follows are several investigations involving string musical instruments developed for and used in a "Science of Sound & Light" course. The experiments make use of a guitar, orchestral string instruments and data collection and graphing software. They are designed to provide students with concrete examples of how mathematical formulae, when…

  20. High-energy string-brane scattering: leading eikonal and beyond

    CERN Document Server

    D'Appollonio, Giuseppe; Russo, Rodolfo; Veneziano, Gabriele

    2010-01-01

    We extend previous techniques for calculations of transplanckian-energy string-string collisions to the high-energy scattering of massless closed strings from a stack of N Dp-branes in Minkowski spacetime. We show that an effective non-trivial metric emerges from the string scattering amplitudes by comparing them against the semiclassical dynamics of high-energy strings in the extremal p-brane background. By changing the energy, impact parameter and effective open string coupling, we are able to explore various interesting regimes and to reproduce classical expectations, including tidal-force excitations, even beyond the leading-eikonal approximation.