CSE 21 Mathematics for Algorithm and System Analysis

Total Page:16

File Type:pdf, Size:1020Kb

CSE 21 Mathematics for Algorithm and System Analysis CSE 21 Mathematics for Algorithm and System Analysis Unit 1: Basic Count and List Section 3: Set (cont’d) Section 4: Probability and Basic Counting CSE21: Lecture 4 1 Quiz Information • The first quiz will be in the first 15 minutes of the next class (Monday) at the same classroom. • You can use textbook and notes during the quiz. • For all the questions, no final number is necessary, arithmetic formula is enough. • Write down your analysis, e.g., applicable theorem(s)/rule(s). We will give partial credit if the analysis is correct but the result is wrong. CSE21: Lecture 4 2 Correction • For set U={1, 2, 3, 4, 5}, A={1, 2, 3}, B={3, 4}, – Set Difference A − B = {1, 2}, B − A ={4} – Symmetric Difference: A ⊕ B = ( A − B)∪(B − A)= {1, 2} ∪{4} = {1, 2, 4} CSE21: Lecture 4 3 Card Hand Illustration • 5 card hand of full house: a pair and a triple • 5 card hand with two pairs CSE21: Lecture 4 4 Review: Binomial Coefficient • Binomial Coefficient: number of subsets of A of size (or cardinality) k: n n! C(n, k) = = k k (! n − k)! CSE21: Lecture 4 5 Review : Deriving Recursions • How to construct the things of a given size by using the same type of things of a smaller size? • Recursion formula of binomial coefficient – C(0,0) = 1, – C(0, k) = 0 for k ≠ 0 and – C(n,k) = C(n−1, k−1)+ C(n−1, k) for n > 0; • It shows how recursion works and tells another way calculating C(n,k) besides the formula n n! C(n, k) = = k k (! n − k)! 6 Learning Outcomes • By the end of this lesson, you should be able to – Calculate set partition number by recursion. – Calculate probability value using Probability Function and Venn Diagrams. CSE21: Lecture 4 7 Why do we need to learn them? • Set partition is an important operation to divide problem and will be used in future lectures. • Probability describes and calculates the likelihood of random events that happens in everyday lives. – Whether it will rain tomorrow? – Can Chargers win in the next game? – … CSE21: Lecture 4 8 CSE 21 Mathematics for Algorithm and System Analysis Unit 1: Basic Count and List Section 3: Set (cont’d) CSE21: Lecture 4 9 Example 24: Set Partitions • A partition of a set B is a collection of nonempty subsets of B such that each element of B appears in exactly one subset. Each subset is called a block of the partition. • Partitions of {1, 2, 3} by the number of blocks: – 1 block: {{1, 2, 3}} – 2 blocks: {{1, 2}, {3}}, {{1, 3}, {2}},{{1}, {2, 3}} – 3 blocks: {{1}, {2}, {3}} CSE21: Lecture 4 10 Solution of Example 24 (1) • Let S(n,k) be the number of partitions of an n-set having exactly k blocks. Given 3-set {1,2,3}, calculate S(3, 2) from smaller size numbers: S(2, 1) and S(2, 2). • By Recursion, first remove element 3 from set{1, 2, 3} – S(2, 1) for {1, 2}:{{1, 2}} – S(2, 2) for {1, 2}:{{1},{2}} • Check how to add element 3 back – One way to add 3 as a separate block:{{1, 2}, {3}} – Two ways to add 3 into existing blocks: {{1, 3}, {2}},{{1}, {2, 3}} • S(3, 2) = S(2, 1) + 2×S(2, 2) CSE21: Lecture 4 11 Solution of Example 24 (2) • Recursion for S(n,k): First remove n from the set {1,..., n} and from the block of the partition in which it occurs, AND add n back. – If n was in a block by itself: partition number is S(n − 1, k − 1). Only one way to add n back: { n}. – If n was in a block with others: partition number is S(n − 1, k). k ways to add n back because there are k blocks. • By Rule of Sum and Product, S(n, k) = S(n−1, k−1) ×1 + k × S(n−1, k). CSE21: Lecture 4 12 Tabular form for S(n, k) k n 1 2 3 4 5 6 7 1 1 2 1 1 S(n,k) 3 13 1 4 17 6 1 5 11 5 2 5 1 0 1 6 13 1 9 0 6 5 1 5 1 7 1--- - - - - - -- 1 CSE21: Lecture 4 13 CSE 21 Mathematics for Algorithm and System Analysis Unit 1: Basic Count and List Section 4: Probability and Basic Counting CSE21: Lecture 4 14 Basic Probability Terms • Universal set ( U), we assume it is finite. • In probability theory, the term “universal set” is replaced by “sample space ”. • probability : If we select elements uniformly at random from a sample space U, the probability of each element of U being selected is 1/| U|. • event : A subset E ⊆ U. If we select elements uniformly at random from U, the probability that selection belongs to the set E is | E|/| U|. CSE21: Lecture 4 15 Definition 4: Probability function and probability space • Let U be a finite sample space and let P be a function from U to R (the real numbers) such that P (t) ≥ 0 for all t and ∑ P ( t ) = 1 . t∈U – P is called a probability function on U. – The pair (U,P) is called a probability space . – P can include events ( E ⊆ U) directly: P ( E ) = ∑ P (t) t∈E – P(E) is called the probability of event E – An element t ∈ U is called an elementary event or a simple event . CSE21: Lecture 4 16 Examples of Probability Function and Probability Space • Suppose U = {H,T} • Flip a coin, if “heads” comes up, we choose H, otherwise we choose T. • Probability function P: suppose that the “probability” of choosing H is 0.4 and the probability of choosing T is 0.6, then P(H) = 0.4, P(T) = 0.6 • Probability space: ( U, P) • P(t) = P(H) + P(T) =1 ∑t∈U CSE21: Lecture 4 17 Theorem 9: Disjoint Events • Disjoint sets : two sets X and Y are disjoint if and if X∩Y = ∅. • Disjoint events: Suppose that ( U, P) is a probability space and that X and Y are disjoint subsets of U, Then P(X∪Y)= P(X)+ P(Y) • Example: • For the coin flip case: P({H, T}) = P({H}) + P({T}) = 1 CSE21: Lecture 4 18 Example 26 : Venn Diagrams • Venn diagram shows the relationship between elements of sets. – The interior of the rectangle represents the sample space U, or universal set U. – The interior of each of the circular regions represents a event in sample space U or a subset of universal set U. • The figure shows four disjoint areas: 1, 2, 3, 4. Calculate results of set operations – (A∪B)c =1 11 AA BB – A−B =2 – A ∩ B=3 22 33 44 – B − A=4 UU CSE21: Lecture 4 19 Example 26 : Venn Diagrams and Probability • P (A) + P (Ac) = P (U) =1 • P(A ∪ B) = P(A−B) + P(A ∩ B) + P(B−A) • P (A − B) = P (A) − P (A ∩ B) 11 AA BB 22 33 44 • P (B − A) = P (B) − P (A ∩ B) UU • P (A ∪ B) = P (A) + P (B) − P (A ∩ B) • P(Ac ∩ Bc) = 1 − P(A) − P(B) + P(A∩B) CSE21: Lecture 4 20 Example 27 : Combining Events • Let A and B be events, – A occurs with probability 7/15; – B occurs with probability 6/15; – The probability that neither of the events occurs is 3/15. • What is the probability that both of the events occur? – P(A∩B) = P(Ac ∩ Bc) + P(A) + P(B) − 1 = 1/15. – Venn diagram: 3/15 AA BB 6/15 1/15 5/15 UU 21 Example 31 : Girls and Boys Sit in a Row • Four girls and two boys sit in a row. Find the probability that each boy has a girl to his left and to his right. – Eligible patterns: gbgbgg, gbggbg, and ggbgbg – 6 Number of all possible patterns: =15 – Possibility: 3/15=1/5 2 • What if they sit in a circle? – Start from a boy in the circle, check eligible positions for the other boy (3) and all possible positions for the other boy (5) – Possibility: 3/5 CSE21: Lecture 4 22 Example 29 : Hypergeometric Probabilities • b light bulbs are chosen at random from B light bulbs of which D are defective. • What is the probability that exactly d of the chosen bulbs are defective? P(E(B,D,b,d )) − • D B D Possible ways for the above problem: d b − d – First choose d bulbs from the D defective bulbs, – AND then choose b-d bulbs from the B-D good bulbs • Overall ways of choose b bulbs: B b − • Probability: D B D d b − d B b CSE21: Lecture 4 23 Example 32 : Dealing Cards from a Standard Deck of 52 Cards • A man is dealt 4 spade cards from an ordinary deck of 52 cards. • If he is given five more cards, what is the probability that three of them are spades? • Another hypergeometric probabilities problem: B=48, D=9, b=5, d=3 • Probability: D B − D 9 48− 9 9! × 39! d b − d 3 5− 3 = = 3!× 6! 2!×37! 48! B 48 b 5 5!43! CSE21: Lecture 4 24 Example 30 : Sampling with Replacement from Six Cards • Given 6 cards numbered 1 to 6, first select one card at random. Then replace the card selected, and select a second card at random.
Recommended publications
  • Probability and Statistics Lecture Notes
    Probability and Statistics Lecture Notes Antonio Jiménez-Martínez Chapter 1 Probability spaces In this chapter we introduce the theoretical structures that will allow us to assign proba- bilities in a wide range of probability problems. 1.1. Examples of random phenomena Science attempts to formulate general laws on the basis of observation and experiment. The simplest and most used scheme of such laws is: if a set of conditions B is satisfied =) event A occurs. Examples of such laws are the law of gravity, the law of conservation of mass, and many other instances in chemistry, physics, biology... If event A occurs inevitably whenever the set of conditions B is satisfied, we say that A is certain or sure (under the set of conditions B). If A can never occur whenever B is satisfied, we say that A is impossible (under the set of conditions B). If A may or may not occur whenever B is satisfied, then A is said to be a random phenomenon. Random phenomena is our subject matter. Unlike certain and impossible events, the presence of randomness implies that the set of conditions B do not reflect all the necessary and sufficient conditions for the event A to occur. It might seem them impossible to make any worthwhile statements about random phenomena. However, experience has shown that many random phenomena exhibit a statistical regularity that makes them subject to study. For such random phenomena it is possible to estimate the chance of occurrence of the random event. This estimate can be obtained from laws, called probabilistic or stochastic, with the form: if a set of conditions B is satisfied event A occurs m times =) repeatedly n times out of the n repetitions.
    [Show full text]
  • The Probability Set-Up.Pdf
    CHAPTER 2 The probability set-up 2.1. Basic theory of probability We will have a sample space, denoted by S (sometimes Ω) that consists of all possible outcomes. For example, if we roll two dice, the sample space would be all possible pairs made up of the numbers one through six. An event is a subset of S. Another example is to toss a coin 2 times, and let S = fHH;HT;TH;TT g; or to let S be the possible orders in which 5 horses nish in a horse race; or S the possible prices of some stock at closing time today; or S = [0; 1); the age at which someone dies; or S the points in a circle, the possible places a dart can hit. We should also keep in mind that the same setting can be described using dierent sample set. For example, in two solutions in Example 1.30 we used two dierent sample sets. 2.1.1. Sets. We start by describing elementary operations on sets. By a set we mean a collection of distinct objects called elements of the set, and we consider a set as an object in its own right. Set operations Suppose S is a set. We say that A ⊂ S, that is, A is a subset of S if every element in A is contained in S; A [ B is the union of sets A ⊂ S and B ⊂ S and denotes the points of S that are in A or B or both; A \ B is the intersection of sets A ⊂ S and B ⊂ S and is the set of points that are in both A and B; ; denotes the empty set; Ac is the complement of A, that is, the points in S that are not in A.
    [Show full text]
  • 1 Probabilities
    1 Probabilities 1.1 Experiments with randomness We will use the term experiment in a very general way to refer to some process that produces a random outcome. Examples: (Ask class for some first) Here are some discrete examples: • roll a die • flip a coin • flip a coin until we get heads And here are some continuous examples: • height of a U of A student • random number in [0, 1] • the time it takes until a radioactive substance undergoes a decay These examples share the following common features: There is a proce- dure or natural phenomena called the experiment. It has a set of possible outcomes. There is a way to assign probabilities to sets of possible outcomes. We will call this a probability measure. 1.2 Outcomes and events Definition 1. An experiment is a well defined procedure or sequence of procedures that produces an outcome. The set of possible outcomes is called the sample space. We will typically denote an individual outcome by ω and the sample space by Ω. Definition 2. An event is a subset of the sample space. This definition will be changed when we come to the definition ofa σ-field. The next thing to define is a probability measure. Before we can do this properly we need some more structure, so for now we just make an informal definition. A probability measure is a function on the collection of events 1 that assign a number between 0 and 1 to each event and satisfies certain properties. NB: A probability measure is not a function on Ω.
    [Show full text]
  • Propensities and Probabilities
    ARTICLE IN PRESS Studies in History and Philosophy of Modern Physics 38 (2007) 593–625 www.elsevier.com/locate/shpsb Propensities and probabilities Nuel Belnap 1028-A Cathedral of Learning, University of Pittsburgh, Pittsburgh, PA 15260, USA Received 19 May 2006; accepted 6 September 2006 Abstract Popper’s introduction of ‘‘propensity’’ was intended to provide a solid conceptual foundation for objective single-case probabilities. By considering the partly opposed contributions of Humphreys and Miller and Salmon, it is argued that when properly understood, propensities can in fact be understood as objective single-case causal probabilities of transitions between concrete events. The chief claim is that propensities are well-explicated by describing how they fit into the existing formal theory of branching space-times, which is simultaneously indeterministic and causal. Several problematic examples, some commonsense and some quantum-mechanical, are used to make clear the advantages of invoking branching space-times theory in coming to understand propensities. r 2007 Elsevier Ltd. All rights reserved. Keywords: Propensities; Probabilities; Space-times; Originating causes; Indeterminism; Branching histories 1. Introduction You are flipping a fair coin fairly. You ascribe a probability to a single case by asserting The probability that heads will occur on this very next flip is about 50%. ð1Þ The rough idea of a single-case probability seems clear enough when one is told that the contrast is with either generalizations or frequencies attributed to populations asserted while you are flipping a fair coin fairly, such as In the long run; the probability of heads occurring among flips is about 50%. ð2Þ E-mail address: [email protected] 1355-2198/$ - see front matter r 2007 Elsevier Ltd.
    [Show full text]
  • Topic 1: Basic Probability Definition of Sets
    Topic 1: Basic probability ² Review of sets ² Sample space and probability measure ² Probability axioms ² Basic probability laws ² Conditional probability ² Bayes' rules ² Independence ² Counting ES150 { Harvard SEAS 1 De¯nition of Sets ² A set S is a collection of objects, which are the elements of the set. { The number of elements in a set S can be ¯nite S = fx1; x2; : : : ; xng or in¯nite but countable S = fx1; x2; : : :g or uncountably in¯nite. { S can also contain elements with a certain property S = fx j x satis¯es P g ² S is a subset of T if every element of S also belongs to T S ½ T or T S If S ½ T and T ½ S then S = T . ² The universal set ­ is the set of all objects within a context. We then consider all sets S ½ ­. ES150 { Harvard SEAS 2 Set Operations and Properties ² Set operations { Complement Ac: set of all elements not in A { Union A \ B: set of all elements in A or B or both { Intersection A [ B: set of all elements common in both A and B { Di®erence A ¡ B: set containing all elements in A but not in B. ² Properties of set operations { Commutative: A \ B = B \ A and A [ B = B [ A. (But A ¡ B 6= B ¡ A). { Associative: (A \ B) \ C = A \ (B \ C) = A \ B \ C. (also for [) { Distributive: A \ (B [ C) = (A \ B) [ (A \ C) A [ (B \ C) = (A [ B) \ (A [ C) { DeMorgan's laws: (A \ B)c = Ac [ Bc (A [ B)c = Ac \ Bc ES150 { Harvard SEAS 3 Elements of probability theory A probabilistic model includes ² The sample space ­ of an experiment { set of all possible outcomes { ¯nite or in¯nite { discrete or continuous { possibly multi-dimensional ² An event A is a set of outcomes { a subset of the sample space, A ½ ­.
    [Show full text]
  • Probability Theory Review 1 Basic Notions: Sample Space, Events
    Fall 2018 Probability Theory Review Aleksandar Nikolov 1 Basic Notions: Sample Space, Events 1 A probability space (Ω; P) consists of a finite or countable set Ω called the sample space, and the P probability function P :Ω ! R such that for all ! 2 Ω, P(!) ≥ 0 and !2Ω P(!) = 1. We call an element ! 2 Ω a sample point, or outcome, or simple event. You should think of a sample space as modeling some random \experiment": Ω contains all possible outcomes of the experiment, and P(!) gives the probability that we are going to get outcome !. Note that we never speak of probabilities except in relation to a sample space. At this point we give a few examples: 1. Consider a random experiment in which we toss a single fair coin. The two possible outcomes are that the coin comes up heads (H) or tails (T), and each of these outcomes is equally likely. 1 Then the probability space is (Ω; P), where Ω = fH; T g and P(H) = P(T ) = 2 . 2. Consider a random experiment in which we toss a single coin, but the coin lands heads with 2 probability 3 . Then, once again the sample space is Ω = fH; T g but the probability function 2 1 is different: P(H) = 3 , P(T ) = 3 . 3. Consider a random experiment in which we toss a fair coin three times, and each toss is independent of the others. The coin can come up heads all three times, or come up heads twice and then tails, etc.
    [Show full text]
  • 1 Probability Measure and Random Variables
    1 Probability measure and random variables 1.1 Probability spaces and measures We will use the term experiment in a very general way to refer to some process that produces a random outcome. Definition 1. The set of possible outcomes is called the sample space. We will typically denote an individual outcome by ω and the sample space by Ω. Set notation: A B, A is a subset of B, means that every element of A is also in B. The union⊂ A B of A and B is the of all elements that are in A or B, including those that∪ are in both. The intersection A B of A and B is the set of all elements that are in both of A and B. ∩ n j=1Aj is the set of elements that are in at least one of the Aj. ∪n j=1Aj is the set of elements that are in all of the Aj. ∩∞ ∞ j=1Aj, j=1Aj are ... Two∩ sets A∪ and B are disjoint if A B = . denotes the empty set, the set with no elements. ∩ ∅ ∅ Complements: The complement of an event A, denoted Ac, is the set of outcomes (in Ω) which are not in A. Note that the book writes it as Ω A. De Morgan’s laws: \ (A B)c = Ac Bc ∪ ∩ (A B)c = Ac Bc ∩ ∪ c c ( Aj) = Aj j j [ \ c c ( Aj) = Aj j j \ [ (1) Definition 2. Let Ω be a sample space. A collection of subsets of Ω is a σ-field if F 1.
    [Show full text]
  • Characterization of Palm Measures Via Bijective Point-Shifts
    The Annals of Probability 2005, Vol. 33, No. 5, 1698–1715 DOI 10.1214/009117905000000224 © Institute of Mathematical Statistics, 2005 CHARACTERIZATION OF PALM MEASURES VIA BIJECTIVE POINT-SHIFTS BY MATTHIAS HEVELING AND GÜNTER LAST Universität Karlsruhe The paper considers a stationary point process N in Rd . A point-map picks a point of N in a measurable way. It is called bijective [Thorisson, H. (2000). Coupling, Stationarity, and Regeneration. Springer, New York] if it is generating (by suitable shifts) a bijective mapping on N. Mecke [Math. Nachr. 65 (1975) 335–344] proved that the Palm measure of N is point- stationary in the sense that it is invariant under bijective point-shifts. Our main result identifies this property as being characteristic for Palm measures. This generalizes a fundamental classical result for point processes on the line (see, e.g., Theorem 11.4 in [Kallenberg, O. (2002). Foundations of Modern Probability, 2nd ed. Springer, New York]) and solves a problem posed in [Thorisson, H. (2000). Coupling, Stationarity, and Regeneration. Springer, New York] and [Ferrari, P. A., Landim, C. and Thorisson, H. (2004). Ann. Inst. H. Poincaré Probab. Statist. 40 141–152]. Our second result guarantees the existence of bijective point-maps that have (almost surely with respect to the Palm measure of N) no fixed points. This answers another question asked by Thorisson. Our final result shows that there is a directed graph with vertex set N that is defined in a translation-invariant way and whose components are almost surely doubly infinite paths. This generalizes and complements one of the main results in [Holroyd, A.
    [Show full text]
  • Probability Spaces Lecturer: Dr
    EE5110: Probability Foundations for Electrical Engineers July-November 2015 Lecture 4: Probability Spaces Lecturer: Dr. Krishna Jagannathan Scribe: Jainam Doshi, Arjun Nadh and Ajay M 4.1 Introduction Just as a point is not defined in elementary geometry, probability theory begins with two entities that are not defined. These undefined entities are a Random Experiment and its Outcome: These two concepts are to be understood intuitively, as suggested by their respective English meanings. We use these undefined terms to define other entities. Definition 4.1 The Sample Space Ω of a random experiment is the set of all possible outcomes of a random experiment. An outcome (or elementary outcome) of the random experiment is usually denoted by !: Thus, when a random experiment is performed, the outcome ! 2 Ω is picked by the Goddess of Chance or Mother Nature or your favourite genie. Note that the sample space Ω can be finite or infinite. Indeed, depending on the cardinality of Ω, it can be classified as follows: 1. Finite sample space 2. Countably infinite sample space 3. Uncountable sample space It is imperative to note that for a given random experiment, its sample space is defined depending on what one is interested in observing as the outcome. We illustrate this using an example. Consider a person tossing a coin. This is a random experiment. Now consider the following three cases: • Suppose one is interested in knowing whether the toss produces a head or a tail, then the sample space is given by, Ω = fH; T g. Here, as there are only two possible outcomes, the sample space is said to be finite.
    [Show full text]
  • 1 Probability Spaces
    BROWN UNIVERSITY Math 1610 Probability Notes Samuel S. Watson Last updated: December 18, 2015 Please do not hesitate to notify me about any mistakes you find in these notes. My advice is to refresh your local copy of this document frequently, as I will be updating it throughout the semester. 1 Probability Spaces We model random phenomena with a probability space, which consists of an arbitrary set ­, a collection1 of subsets of ­, and a map P : [0, 1], where and P satisfy certain F F! F conditions detailed below. An element ! ­ is called an outcome, an element E is 2 2 F called an event, and we interpret P(E) as the probability of the event E. To connect this setup to the way you usually think about probability, regard ! as having been randomly selected from ­ in such a way that, for each event E, the probability that ! is in E (in other words, that E happens) is equal to P(E). If E and F are events, then the event “E and F” corresponds to the ! : ! E and ! F , f 2 2 g abbreviated as E F. Similarly, E F is the event that E happens or F happens, and \ [ ­ E is the event that E does not happen. We refer to ­ E as the complement of E, and n n sometimes denote2 it by Ec. To ensure that we can perform these basic operations, we require that is closed under F them. In other words, ­ E must be an event whenever E is an event (that is, ­ E n n 2 F whenever E ).
    [Show full text]
  • Set Theory Background for Probability Defining Sets (A Very Naïve Approach)
    Set theory background for probability Defining sets (a very naïve approach) A set is a collection of distinct objects. The objects within a set may be arbitrary, with the order of objects within them having no significance. Here are several examples, demonstrating the above properties: 2,3,5,7,11,13,17,19 (the set of all prime numbers smaller than 20) , , , , , ,′′ The brackets … surround the objects that belong to a certain set. Objects are separated by commas. Note that: 1,2,3 1,3,2 (there is no ordering of objects within a set) 1,2,3,3 1,2,3 (sets contain one copy of each distinct object) Working with sets 1. Membership If an object is a member of a set we write: ∈. If an object is not a member of a set we write: ∉. 2. Subsets Assume that we have a set and another set , such that every element in is also a member of . Then we can write: ⊆. We say that is a subset of . Formally, we can write: ∀∈∈ (any that is a member of is a member of ) No need to worry: we will usually not encounter this formal logic notation. Notice that the sets of , may actually be equal. If they are not, there must be some member of that is not a member of . In this case we can write: ⊂ i.e. is a true subset of , or in logic notation: ∀ ∈ ∈ ∧∃∈∈ (any that is in is in AND there exists a in that is not in ). 3. Set equality Sets , are equal if and only if ⊆ and ⊆.
    [Show full text]
  • Are Deterministic Descriptions and Indeterministic Descriptions Observationally Equivalent?
    Charlotte Werndl Are deterministic descriptions and indeterministic descriptions observationally equivalent? Article (Accepted version) (Refereed) Original citation: Werndl, Charlotte (2009) Are deterministic descriptions and indeterministic descriptions observationally equivalent? Studies in history and philosophy of science part b: studies in history and philosophy of modern physics, 40 (3). pp. 232-242. ISSN 1355-2198 DOI: http://10.1016/j.shpsb.2009.06.004/ © 2009 Elsevier Ltd This version available at: http://eprints.lse.ac.uk/31094/ Available in LSE Research Online: July 2013 LSE has developed LSE Research Online so that users may access research output of the School. Copyright © and Moral Rights for the papers on this site are retained by the individual authors and/or other copyright owners. Users may download and/or print one copy of any article(s) in LSE Research Online to facilitate their private study or for non-commercial research. You may not engage in further distribution of the material or use it for any profit-making activities or any commercial gain. You may freely distribute the URL (http://eprints.lse.ac.uk) of the LSE Research Online website. This document is the author’s final accepted version of the journal article. There may be differences between this version and the published version. You are advised to consult the publisher’s version if you wish to cite from it. Are Deterministic Descriptions And Indeterministic Descriptions Observationally Equivalent? Charlotte Werndl The Queen’s College, Oxford University, [email protected] Forthcoming in: Studies in History and Philosophy of Modern Physics Abstract The central question of this paper is: are deterministic and inde- terministic descriptions observationally equivalent in the sense that they give the same predictions? I tackle this question for measure- theoretic deterministic systems and stochastic processes, both of which are ubiquitous in science.
    [Show full text]