Open Thesis-Cklee-Jul21.Pdf

Total Page:16

File Type:pdf, Size:1020Kb

Open Thesis-Cklee-Jul21.Pdf The Pennsylvania State University The Graduate School College of Engineering EFFICIENT INFORMATION ACCESS FOR LOCATION-BASED SERVICES IN MOBILE ENVIRONMENTS A Dissertation in Computer Science and Engineering by Chi Keung Lee c 2009 Chi Keung Lee Submitted in Partial Fulfillment of the Requirements for the Degree of Doctor of Philosophy August 2009 The dissertation of Chi Keung Lee was reviewed and approved∗ by the following: Wang-Chien Lee Associate Professor of Computer Science and Engineering Dissertation Advisor Chair of Committee Donna Peuquet Professor of Geography Piotr Berman Associate Professor of Computer Science and Engineering Daniel Kifer Assistant Professor of Computer Science and Engineering Raj Acharya Professor of Computer Science and Engineering Head of Computer Science and Engineering ∗Signatures are on file in the Graduate School. Abstract The demand for pervasive access of location-related information (e.g., local traffic, restau- rant locations, navigation maps, weather conditions, pollution index, etc.) fosters a tremen- dous application base of Location Based Services (LBSs). Without loss of generality, we model location-related information as spatial objects and the accesses of such information as Location-Dependent Spatial Queries (LDSQs) in LBS systems. In this thesis, we address the efficiency issue of LDSQ processing through several innovative techniques. First, we develop a new client-side data caching model, called Complementary Space Caching (CSC), to effectively shorten data access latency over wireless channels. This is mo- tivated by an observation that mobile clients, with only a subset of objects cached, do not have sufficient knowledge to assert whether or not certain object access from the remote server are necessary for given LDSQs. To address this problem, our CSC requests each client to cache a global data view, that is composed of (i) cached spatial objects and (ii) complementary regions that cover the locations of all the non-cached objects. With a global data view cached, CSC enables clients to assert the completeness of LDSQ results locally. Second, we investigate two new types of complex LDSQs, namely, Nearest Surrounder (NS) Queries and Skyline Queries. Both of them have a wide application base. An NS query returns spatial objects along with dis- jointed angular ranges within which they are the nearest to a given query point. A skyline query retrieves non-dominated spatial objects. An object o is said to be dominated if there is another object o that is strictly better than o for at least one attribute and is not worse than o for all the other attributes. We conduct in-depth analysis and propose novel techniques to efficiently answer these new queries. Third, we propose an LDSQ processing framework, namely ROAD, to support efficient access of spatial objects on a road network. ROAD adopts a search space pruning technique that has not been explored before in this context. In ROAD, a large road network is organized as a hierarchy of interconnected regional sub-networks called Rnets, i.e., search subspaces. Further, with two novel concepts, namely, (i) shortcuts, that allow jumps across Rnets to accelerate the search traversal, and (ii) object abstracts, that provide search guidance during traversals, searches supported by ROAD can bypass those Rnets that contain no object of interest. Also, ROAD is flexible to support various LDSQs and objects. We conduct extensive empirical studies to evaluate the performance of our proposed ap- proaches. The experiment results demonstrate the efficiency of our approaches and their supe- riority over state-of-the-art approaches in corresponding domains. iii Table of Contents List of Tables viii List of Figures ix Acknowledgments xii Chapter 1 Introduction 1 1.1 Location-Dependent Spatial Queries . ..................... 1 1.2 The System Models of Location-Based Services . ............. 3 1.3 LBS Challenges and Opportunities . ..................... 4 1.4 Our Proposals . ................................. 6 1.5 The Organization of the Thesis ......................... 8 Chapter 2 Literature Review 10 2.1 Mobile and Wireless Computing Environments . ............. 10 2.2 Wireless Data Broadcast . ......................... 12 2.2.1 Broadcast Scheduling . ......................... 13 2.2.2 Air Indexing . ............................. 13 2.3 Mobile Client Caching ............................. 17 2.4 Application-Specific Data Access Methods . ................. 19 2.4.1 Time-Critical Data Access . ..................... 19 2.4.2 Semantic-Based Data Access . ..................... 19 2.4.3 Reliable Data Access . ......................... 20 2.5 Spatial Databases . ............................. 20 2.5.1 Spatial Indexes ............................. 21 iv 2.5.2 Spatial Queries ............................. 23 Chapter 3 Complementary Space Caching 24 3.1 Overview of Complementary Space Caching . ................. 24 3.2 LDSQ Processing with CSC . ......................... 27 3.2.1 Cache Initialization . ......................... 27 3.2.2 Query Processing . ......................... 28 3.2.3 Cache Probing ............................. 29 3.2.4 Remainder Query Processing . ..................... 29 3.3 CR Coalescence ................................. 31 3.3.1 Generic CR Coalescence Algorithm . ................. 32 3.3.2 Client Request CR Coalescence . ................. 33 3.3.3 Server Reply CR Coalescence ..................... 34 3.4 Cache Management . ............................. 35 3.4.1 Cache Organization . ......................... 35 3.4.2 Cache CR Coalescence ......................... 36 3.4.3 Cache Replacement . ......................... 36 3.5 Other Client-Side Data Caching Models . ................. 37 3.6 Performance Evaluation ............................. 38 3.6.1 Performance of Caching Schemes . ................. 40 3.6.2 Performance of Different Remainder Query Expressions . 41 3.6.3 Performance of Server Reply CR Coalescence ............. 42 3.6.4 Performance of Cache Management . ................. 43 3.7 Chapter Summary . ............................. 45 Chapter 4 Nearest Surrounder Queries 46 4.1 Definitions of Nearest Surrounder Queries . ................. 46 4.2 Na¨ıve Approaches to NS Searches . ..................... 49 4.3 Angle-Based Bounding Properties . ..................... 50 4.3.1 Edge Angular Bound and Edge Angular Distance . ......... 51 4.3.2 Edge Comparison . ......................... 53 4.3.3 The Brute-Force Algorithm . ..................... 54 4.4 NS Search Algorithms ............................. 57 4.4.1 The Angle-Based Properties of Polygons and MBRs ......... 58 4.4.2 The Sweep Searching Algorithm . ................. 59 4.4.3 The Ripple Searching Algorithm . ................. 66 4.4.4 NS Search Based on Multiple ANS Searches ............. 69 4.5 Performance Evaluation ............................. 71 v 4.5.1 Performance of NS Searching Algorithms . ............. 72 4.5.2 Effectiveness of Optimization Techniques . ............. 78 4.5.3 Improvement Gained by ANS Queries ................. 79 4.6 Chapter Summary . ............................. 80 Chapter 5 Skyline Queries 81 5.1 Analysis of Skyline Search Problems . ..................... 82 5.2 Existing Skyline Search Approaches . ..................... 86 5.2.1 Skyline Query Processing . ..................... 86 5.2.2 Skyline Query Variants ......................... 88 5.3 Skyline Search Based on Z-Order Curve . ................. 92 5.3.1 Dominance Relationships and Z-Order Curve ............. 92 5.3.2 ZBtree Index Structure ......................... 95 5.3.3 ZBtree Index Manipulation . ..................... 96 5.4 Skyline Search on Z-order Curve . ..................... 98 5.4.1 RZ-Region Based Dominance Test . ................. 98 5.4.2 The ZSearch Algorithm ......................... 101 5.5 Skyline Query Variants ............................. 103 5.5.1 Extended ZBtrees . ......................... 103 5.5.2 The ZBand Algorithm ......................... 105 5.5.3 The ZRank Algorithm ......................... 108 5.5.4 The k-ZSearch Algorithm . ..................... 114 5.5.5 The ZSubsapce Algorithm . ..................... 117 5.6 Performance Evaluation of Skyline Query Processing ............. 120 5.6.1 Experiment Settings . ......................... 121 5.6.2 Experiments on Skyline Queries . ................. 123 5.6.3 Experiments on Skyband Queries . ................. 126 5.6.4 Experiments on Top-Ranked Skyline Queries ............. 127 5.6.5 Experiments on k-Dominant Skyline Queries ............. 129 5.6.6 Experiments on Subspace Skyline Queries . ............. 130 5.7 Chapter Summary . ............................. 132 Chapter 6 LDSQs on Spatial Road Network 134 6.1 State-of-the-Art Approaches . ......................... 134 6.1.1 Network Expansion Based Approaches . ............. 135 6.1.2 Euclidean Distance Based Approaches ................. 135 6.1.3 Solution Based Approaches . ..................... 135 6.2 The ROAD Framework ............................. 136 vi 6.2.1 Basic Idea . ............................. 137 6.2.2 Rnets, Shortcuts and Object Abstracts ................. 137 6.2.3 Rnet Hierarchy ............................. 139 6.2.3.1 Network Partitioning Methods . ............. 140 6.2.3.2 Create of Shortcuts and Object Abstracts . ......... 141 6.2.4 Route Overlay and Association Directory . ............. 143 6.3 Processing LDSQs on ROAD . ......................... 145 6.4 ROAD Framework Maintenance . ..................... 149 6.4.1 Object Update . ............................
Recommended publications
  • Coding Theory, Information Theory and Cryptology : Proceedings of the EIDMA Winter Meeting, Veldhoven, December 19-21, 1994
    Coding theory, information theory and cryptology : proceedings of the EIDMA winter meeting, Veldhoven, December 19-21, 1994 Citation for published version (APA): Tilborg, van, H. C. A., & Willems, F. M. J. (Eds.) (1994). Coding theory, information theory and cryptology : proceedings of the EIDMA winter meeting, Veldhoven, December 19-21, 1994. Euler Institute of Discrete Mathematics and its Applications. Document status and date: Published: 01/01/1994 Document Version: Publisher’s PDF, also known as Version of Record (includes final page, issue and volume numbers) Please check the document version of this publication: • A submitted manuscript is the version of the article upon submission and before peer-review. There can be important differences between the submitted version and the official published version of record. People interested in the research are advised to contact the author for the final version of the publication, or visit the DOI to the publisher's website. • The final author version and the galley proof are versions of the publication after peer review. • The final published version features the final layout of the paper including the volume, issue and page numbers. Link to publication General rights Copyright and moral rights for the publications made accessible in the public portal are retained by the authors and/or other copyright owners and it is a condition of accessing publications that users recognise and abide by the legal requirements associated with these rights. • Users may download and print one copy of any publication from the public portal for the purpose of private study or research. • You may not further distribute the material or use it for any profit-making activity or commercial gain • You may freely distribute the URL identifying the publication in the public portal.
    [Show full text]
  • Checking Whether a Word Is Hamming-Isometric in Linear Time
    Checking whether a word is Hamming-isometric in linear time Marie-Pierre B´eal ID ,∗ Maxime Crochemore ID † July 26, 2021 Abstract duced Fibonacci cubes in which nodes are on a binary alphabet and avoid the factor 11. The notion of d- A finite word f is Hamming-isometric if for any two ary n-cubes has subsequently be extended to define word u and v of the same length avoiding f, u can the generalized Fibonacci cube [10, 11, 19] ; it is the 2 be transformed into v by changing one by one all the subgraph Qn(f) of a 2-ary n-cube whose nodes avoid letters on which u differs from v, in such a way that some factor f. In this framework, a binary word f is 2 all of the new words obtained in this process also said to be Lee-isometric when, for any n 1, Qn(f) 2 ≥ avoid f. Words which are not Hamming-isometric can be isometrically embedded into Qn, that is, the 2 have been characterized as words having a border distance between two words u and v vertices of Qn(f) 2 2 with two mismatches. We derive from this charac- is the same in Qn(f) and in Qn. terization a linear-time algorithm to check whether On a binary alphabet, the definition of a Lee- a word is Hamming-isometric. It is based on pat- isometric word can be equivalently given by ignor- tern matching algorithms with k mismatches. Lee- ing hypercubes and adopting a point of view closer isometric words over a four-letter alphabet have been to combinatorics on words.
    [Show full text]
  • Modern Techniques for Constraint Solving the Casper Experience
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by New University of Lisbon's Repository MARCO VARGAS CORREIA MODERN TECHNIQUES FOR CONSTRAINT SOLVING THE CASPER EXPERIENCE Dissertação apresentada para obtenção do Grau de Doutor em Engenharia Informática, pela Universidade Nova de Lisboa, Faculdade de Ciências e Tecnologia. UNIÃO EUROPEIA Fundo Social Europeu LISBOA 2010 ii Acknowledgments First I would like to thank Pedro Barahona, the supervisor of this work. Besides his valuable scientific advice, his general optimism kept me motivated throughout the long, and some- times convoluted, years of my PhD. Additionally, he managed to find financial support for my participation on international conferences, workshops, and summer schools, and even for the extension of my grant for an extra year and an half. This was essential to keep me focused on the scientific work, and ultimately responsible for the existence of this dissertation. Designing, developing, and maintaining a constraint solver requires a lot of effort. I have been lucky to count on the help and advice of colleagues contributing directly or indirectly to the design and implementation of CASPER, to whom I am truly indebted: Francisco Azevedo introduced me to constraint solving over set variables, and was the first to point out the potential of incremental propagation. The set constraint solver integrating the work presented in this dissertation is based on his own solver CARDINAL, which he has thoroughly explained to me. Jorge Cruz was very helpful for clarifying many issues about real valued arithmetic, and propagation of constraints over real valued variables in general.
    [Show full text]
  • Download Book
    Lecture Notes in Computer Science 3279 Commenced Publication in 1973 Founding and Former Series Editors: Gerhard Goos, Juris Hartmanis, and Jan van Leeuwen Editorial Board David Hutchison Lancaster University, UK Takeo Kanade Carnegie Mellon University, Pittsburgh, PA, USA Josef Kittler University of Surrey, Guildford, UK Jon M. Kleinberg Cornell University, Ithaca, NY, USA Friedemann Mattern ETH Zurich, Switzerland John C. Mitchell Stanford University, CA, USA Moni Naor Weizmann Institute of Science, Rehovot, Israel Oscar Nierstrasz University of Bern, Switzerland C. Pandu Rangan Indian Institute of Technology, Madras, India Bernhard Steffen University of Dortmund, Germany Madhu Sudan Massachusetts Institute of Technology, MA, USA Demetri Terzopoulos New York University, NY, USA Doug Tygar University of California, Berkeley, CA, USA Moshe Y. Vardi Rice University, Houston, TX, USA Gerhard Weikum Max-Planck Institute of Computer Science, Saarbruecken, Germany Geoffrey M. Voelker Scott Shenker (Eds.) Peer-to-Peer Systems III Third International Workshop, IPTPS 2004 La Jolla, CA, USA, February 26-27, 2004 Revised Selected Papers 13 Volume Editors Geoffrey M. Voelker University of California, San Diego Department of Computer Science and Engineering 9500 Gilman Dr., MC 0114, La Jolla, CA 92093-0114, USA E-mail: [email protected] Scott Shenker University of California, Berkeley Computer Science Division, EECS Department 683 Soda Hall, 1776, Berkeley, CA 94720, USA E-mail: [email protected] Library of Congress Control Number: Applied for CR Subject Classification (1998): C.2.4, C.2, H.3, H.4, D.4, F.2.2, E.1, D.2 ISSN 0302-9743 ISBN 3-540-24252-X Springer Berlin Heidelberg New York This work is subject to copyright.
    [Show full text]
  • Anonymous Opt-Out and Secure Computation in Data Mining
    ANONYMOUS OPT-OUT AND SECURE COMPUTATION IN DATA MINING Samuel Steven Shepard A Thesis Submitted to the Graduate College of Bowling Green State University in partial fulfillment of the requirements for the degree of MASTER OF SCIENCE, MASTER OF ARTS December 2007 Committee: Ray Kresman, Advisor Larry Dunning So-Hsiang Chou Tong Sun ii ABSTRACT Ray Kresman, Advisor Privacy preserving data mining seeks to allow users to share data while ensuring individual and corpo- rate privacy concerns are addressed. Recently algorithms have been introduced to maintain privacy even when all but two parties collude. However, exogenous information and unwanted statistical disclosure can weaken collusion requirements and allow for approximation of sensitive information. Our work builds upon previous algorithms, putting cycle-partitioned secure sum into the mathematical framework of edge-disjoint Hamiltonian cycles and providing an additional anonymous “opt-out” procedure to help prevent unwanted statistical disclosure. iii Table of Contents CHAPTER 1: DATA MINING 1 1.1 The Basics . 1 1.2 Association Rule Mining Algorithms . 2 1.3 Distributed Data Mining . 3 1.4 Privacy-preserving Data Mining . 4 1.5 Secure Sum . 5 CHAPTER 2: HAMILTONIAN CYCLES 7 2.1 Graph Theory: An Introduction . 7 2.2 Generating Edge-disjoint Hamiltonian Cycles . 8 2.2.1 Fully-Connected . 8 2.2.2 Edge-disjoint Hamiltonian Cycles in Torus . 11 CHAPTER 3: COLLUSION RESISTANCE WITH OPT-OUT 14 3.1 Cycle-partitioned Secure Sum . 15 3.2 Problems with CPSS: Statistical Disclosure . 21 3.3 Anonymous Opt-Out . 22 3.4 Anonymous ID Assignment . 26 3.5 CPSS with Opt-out .
    [Show full text]
  • A Comparative Analysis of String Metric Algorithms
    International Journal of Latest Trends in Engineering and Technology Special Issue SACAIM 2017, pp. 138-142 e-ISSN:2278-621X A COMPARATIVE ANALYSIS OF STRING METRIC ALGORITHMS BabithaD’Cunha1, RoshiniKarishmaKarkada2 & Mrs.SuchethaVijaykumar3 Abstract: String metric is an important attribute for analysing a string pattern. A string metric provides a number indicating algorithm-specific indication distance. String metric includes many algorithms. One such algorithm is Levenshtein distance is a measure of the similarity between two strings, which we will refer to as the source string and the target string. Hamming distance algorithm is to find the distance between two strings of same length and the number of positions in which the corresponding symbols are different. Lee distance algorithm is used to state the number and length of disjoint paths between two nodes in a torus. We hereby propose to do a comparative study of all the above three algorithms by taking factors such as time and volume of the string to be searched and do an analysis of the same. Key Words: String Metric, Lee distance, Hamming distance,Levenshtein distance. 1. INTRODUCTION A string metric (also known as a string similarity metric or string distance function) is a metric that measures distance ("inverse similarity") between two text strings for approximate string matching. String matching is a technique to discover pattern from the specified input string. String matching algorithms are used to find the matches between the pattern and specified string. Various string matching algorithms are used to solve the string matching problems like wide window pattern matching, approximate string matching, polymorphic string matching, string matching with minimum mismatches, prefix matching, suffix matching, similarity measure etc.
    [Show full text]
  • A Study of Metrics of Distance and Correlation Between Ranked Lists
    A Study of Metrics of Distance and Correlation Between Ranked Lists for Compositionality Detection Christina Lioma and Niels Dalum Hansen Department of Computer Science, University of Copenhagen, Denmark Abstract Compositionality in language refers to how much the meaning of some phrase can be decomposed into the meaning of its constituents and the way these constituents are combined. Based on the premise that substitution by synonyms is meaning-preserving, compositionality can be approximated as the semantic similarity between a phrase and a version of that phrase where words have been replaced by their synonyms. Different ways of representing such phrases exist (e.g., vectors [1] or language models [2]), and the choice of representation affects the measurement of semantic similarity. We propose a new compositionality detection method that represents phrases as ranked lists of term weights. Our method approximatesthe semantic similarity between two ranked list representations using a range of well-known distance and correlation metrics. In contrast to most state-of-the-art approaches in compositionality detection, our method is completely unsupervised. Experiments with a publicly available dataset of 1048 human-annotatedphrases shows that, compared to strong supervised baselines, our approach provides superior measurement of compositionality using any of the dis- tance and correlation metrics considered. Keywords: Compositionality Detection, Metrics of Distance and Correlation 1. Introduction Compositionality in natural language describes the extent to which the meaning of a phrase can be decomposed into the meaning of its constituents and the way these arXiv:1703.03640v1 [cs.CL] 10 Mar 2017 constituents are combined. Automatic compositionality detection has long received attention (see, for instance, [1], [3], [4]).
    [Show full text]
  • Correcting Charge-Constrained Errors in the Rank-Modulation Scheme Anxiao (Andrew) Jiang, Member, IEEE, Moshe Schwartz, Member, IEEE, and Jehoshua Bruck, Fellow, IEEE
    2112 IEEE TRANSACTIONS ON INFORMATION THEORY, VOL. 56, NO. 5, MAY 2010 Correcting Charge-Constrained Errors in the Rank-Modulation Scheme Anxiao (Andrew) Jiang, Member, IEEE, Moshe Schwartz, Member, IEEE, and Jehoshua Bruck, Fellow, IEEE Abstract—We investigate error-correcting codes for a the good performance [7]. To expand its storage capacity, research rank-modulation scheme with an application to flash memory on multilevel cells with large values of is actively underway. n devices. In this scheme, a set of cells stores information in the For flash memories, writing is more time- and energy-con- permutation induced by the different charge levels of the indi- vidual cells. The resulting scheme eliminates the need for discrete suming than reading [7]. The main factor is the iterative cell-pro- cell levels, overcomes overshoot errors when programming cells (a gramming procedure designed to avoid over-programming [2] serious problem that reduces the writing speed), and mitigates the (raising the cell’s charge level above its target level). In flash problem of asymmetric errors. In this paper, we study the proper- memories, cells are organized into blocks, where each block has ties of error-correcting codes for charge-constrained errors in the a large number of cells [7]. Cells can be programmed rank-modulation scheme. In this error model the number of errors corresponds to the minimal number of adjacent transpositions re- individually, but to decrease the state of a cell, the whole block quired to change a given stored permutation to another erroneous has to be erased to the lowest state and then re-programmed.
    [Show full text]
  • On Codes Over the Rings Fq + Ufq + Vfq + Uvfq
    The Islamic University of Gaza Deanery of Higher Studies Fuculty of Science Departemnt of Mathematics On Codes Over The Rings Fq + uFq + vFq + uvFq M.Sc. Thesis Presented by Ibrahim M. Yaghi Supervised by Dr. Mohammed M. AL-AShker Submitted in Partial Fulfillment of the Requirements for M.Sc. Degree 2013 Abstract Codes over finite rings have been studied in the early 1970's [4]. A great deal of attention has been given to codes over finite rings from 1990 [20], because of their new role in algebraic coding theory and their successful applications. In previous studies, some authors determined the structure of the ring F2 + uF2 + vF2 + 2 2 uvF2, where u = v = 0 and uv = vu, also they obtained linear codes, self dual codes, cyclic codes, and consta-cyclic codes over this ring as in [24],[25],[26],[27]. In this thesis, we aim to generalize the previous studies from the ring F2+uF2+vF2+uvF2 2 2 to the ring Fq + uFq + vFq + uvFq, where q is a power of the prime p and u = v = 0 uv = vu, so we obtain the linear codes over R = Fq + uFq + vFq + uvFq, then we investigate self dual codes over R and we find that it can be generalized only when q is a power of the prime 2, also we obtain cyclic and consta-cyclic codes over R, and we generalize the Gray map used for codes over F2 + uF2 + vF2 + uvF2, finally we obtain another gray map for codes over R. i Acknowledgements After Almighty Allah, I am grateful to my parents for their subsidization, patience, and love.
    [Show full text]
  • Needleman–Wunsch Algorithm
    Not logged in Talk Contributions Create account Log in Article Talk Read Edit View history Search Wikipedia Wiki Loves Love: Documenting festivals and celebrations of love on Commons. Help Wikimedia and win prizes by sending photos. Main page Contents Featured content Current events Needleman–Wunsch algorithm Random article From Wikipedia, the free encyclopedia Donate to Wikipedia Wikipedia store This article may be too technical for most readers to understand. Please help improve it Interaction to make it understandable to non-experts, without removing the technical details. (September 2013) (Learn how and when to remove this template message) Help About Wikipedia The Needleman–Wunsch algorithm is an algorithm used in bioinformatics to align Class Sequence Community portal protein or nucleotide sequences. It was one of the first applications of dynamic alignment Recent changes Worst-case performance Contact page programming to compare biological sequences. The algorithm was developed by Saul B. Needleman and Christian D. Wunsch and published in 1970.[1] The Worst-case space complexity Tools algorithm essentially divides a large problem (e.g. the full sequence) into a series of What links here smaller problems and uses the solutions to the smaller problems to reconstruct a solution to the larger problem.[2] It is also Related changes sometimes referred to as the optimal matching algorithm and the global alignment technique. The Needleman–Wunsch algorithm Upload file is still widely used for optimal global alignment, particularly when
    [Show full text]
  • Codes, Metrics, and Applications
    Codes, metrics, and applications Alexander Barg University of Maryland IITP RAS, Moscow ISIT 2016 Problems: § Distance distribution of codes § Duality of linear codes § Ordered linear codes and matroid invariants § Channel models matched to the ordered metrics; applications to polar codes, wiretap channels § Association schemes and bounds on the size of codes § Further extensions Acknowledgment: NSF grants CCF1217245 “Ordered metrics and their applications” CCF1422955, CCF0916919, CCF0807411 Talk summary Coding theory in a class of metric spaces: combinatorial and information-theoretic results and applications. § Channel models matched to the ordered metrics; applications to polar codes, wiretap channels § Association schemes and bounds on the size of codes § Further extensions Acknowledgment: NSF grants CCF1217245 “Ordered metrics and their applications” CCF1422955, CCF0916919, CCF0807411 Talk summary Coding theory in a class of metric spaces: combinatorial and information-theoretic results and applications. Problems: § Distance distribution of codes § Duality of linear codes § Ordered linear codes and matroid invariants Acknowledgment: NSF grants CCF1217245 “Ordered metrics and their applications” CCF1422955, CCF0916919, CCF0807411 Talk summary Coding theory in a class of metric spaces: combinatorial and information-theoretic results and applications. Problems: § Distance distribution of codes § Duality of linear codes § Ordered linear codes and matroid invariants § Channel models matched to the ordered metrics; applications to polar
    [Show full text]
  • Chapter 9 Error-Correcting Constrained Coding
    Chapter ErrorCorrecting Constrained Co ding In this chapter we consider co des that have combined errorcorrection and constrained prop erties We b egin with a discussion of error mechanisms in recording systems and the corresp onding error typ es observed We then discuss asso ciated metrics imp osed on con strained systemsprimarily the Hamming Lee and Euclidean metricsand we survey the literature on b ounds and co de constructions In addition we consider two imp ortant classes of combined errorcorrectionconstrained co des sp ectral null co des and forbidden list co des Errormechanisms in recording channels Magnetic recording systems using p eak detection as describ ed in Chapter of this chapter are sub ject to three predominant typ es of errors at the peak detector output The most frequently observed error is referred to as a bitshift error where a pair of recorded symbols is detected as a left bitshift or the pair is detected as a right bitshift Another commonly o ccurring error typ e is called a dropout error or sometimes a missingbit error where a recorded symbol is detected as a Less frequently a dropin error or extrabit error results in the detection of a recorded as a It is convenient to refer to the dropin and dropout errors as substitution errors Hammingmetric constrained co des are most p ertinent in recording channels that b ehave which dropin and dropout errors o ccur with equal like a binary symmetric channel in probability However there are alternative mo dels of interest that suggest the use of co des designed
    [Show full text]