Wikipedia:Reference desk/Archives/Mathematics/2018 December 6

Mathematics desk
< December 5 << Nov | December | Jan >> December 7 >
Welcome to the Wikipedia Mathematics Reference Desk Archives
The page you are currently viewing is a transcluded archive page. While you can leave answers for any questions shown below, please ask new questions on one of the current reference desk pages.


December 6 edit

Confidence intervals/error bars on fit parameters edit

Original problem: I have N experimental observations of a certain phenomenon; the i-th experimental observation consists of a certain number of repetitions of the experiment at a parameter  , and from that I extracted the sample mean and standard deviation of the result  . I know a predicted linear relationship between the parameter and the result:  . I want to use the experimental data to extract the parameters' values   and the uncertainty affecting those.

What I tried so far: get the fit parameters by least squares weighted by the reverse of the uncertainty on each point; that is, find   as the values that minimize  . That does give an estimation of the parameters, but not uncertainty bounds on them. Intuitively I would look at what   produces a "large" value for the weighted least squares but I do not really know how to properly do it and I am sure it has already been done before by my Google-fu was weak.

I have already read reduced chi-squared statistic which is close but not what I want. TigraanClick here to contact me 15:20, 6 December 2018 (UTC)[reply]

You are doing a weighted least squares estimation of   and   in
 
with intercept term   The estimate for k is simply the estimated coefficient of   and its variance is the variance of that estimated coefficient, which is standard in regression output. We need to find the variance of   given the variances of k and of the estimated intercept. I would think that you could state the variance of the estimated intercept as a probability-weighted average of the possible values of k times the variance of  :
 
where f(k) is the probability density of k, inferred from the regression by the estimated variance of k and a normality assumption on k. Then the only unknown in this equation is the desired var( ), which the equation says equals the variance of the intercept. Does any of that make any sense? Loraof (talk) 19:53, 6 December 2018 (UTC)[reply]
I am not sure it makes sense, but the link to Weighted_least_squares#Parameter_errors_and_correlation was all I neeeded. Thanks! TigraanClick here to contact me 11:04, 10 December 2018 (UTC)[reply]
I think that you can find all answers in Simple linear regression. Ruslik_Zero 20:00, 8 December 2018 (UTC)[reply]
No, because it does not deal with the case of data with error bars. The fit parameters are the same for the dataset {(0,0±0.0001), (1,1±0.0001)} than for {(0,0±0.0001), (1,1±0.1)} but intuitively the latter should have a much larger uncertainty on the proportionality coefficient. (I could scrap the uncertainty and fit the whole set of experimental data with multiple points per parameter value, but I have some reason to expect measurement uncertainty to be higher for some values of the parameter than others.) TigraanClick here to contact me 11:04, 10 December 2018 (UTC)[reply]
See weighted least squares. Ruslik_Zero 20:48, 10 December 2018 (UTC)[reply]

Minimal CNF form edit

Is the following statement correct:

Let   be a formula in CNF form over the set of variables  .

Assume that:

  1. For every clause all of its variables appear in their positive form. (that is, no   in the  )
  2. Every two clauses   of  , satisfy   (  is not a subset of  )

Then   is in its minimal CNF form (there's no equivalent CNF formula with smaller size) David (talk) 18:58, 6 December 2018 (UTC)[reply]

I believe (A∨B)∧(¬A∨¬B)∧(A∨C)∧(¬A∨¬C)∧(B∨C)∧(¬B∨¬C) has the form you describe, but it's equivalent to False or (A)∧(¬A). Pretty sure that if there was a rule like this then you'd be able to solve SAT in polynomial time, and if such a scheme existed it's extremely unlikely it wouldn't have been found already. --RDBury (talk) 05:51, 7 December 2018 (UTC)[reply]
First, it's a good counterexample, so I changed my question, and replaced it with a stronger condition, under which I hope we can promise it's the minimal CNF form.
Second, I agree that one can't expect to get a method that works in general that decides whether or not a given formula is in its minimal CNF form (for then, SAT were in P). Nevertheless, there could be many methods for deciding in some special cases if they're in their minimal CNF form. David (talk) 12:48, 7 December 2018 (UTC)[reply]
Just for clarity, the original conditions were:
Assume that every two clauses   of  , satisfy:
  1.   (  is not a subset of  )
  2.   (the symmetric difference of   and   is not equal to any variable and its negation).
You may have had no way of knowing this, but in general it's better to just strikethrough material in your previous posts rather than deleting; especially if someone has already replied to the original. If you're just fixing a typo or something that doesn't change the meaning then don't worry about it; WP does have a habit of inserting typos into what people have written after they hit the 'Publish' button.
The example is basically just a Boolean version of the statement '2 divides 3', so not that hard to dome up with if you're used to this type of conversion. The new version of the question appears in a StackExchange post. The only response missed the 'positive' part of the question, so as far as I know it's still unanswered. --RDBury (talk) 15:16, 7 December 2018 (UTC)[reply]
PS. I think I have a proof that, given the positive condition, the minimal expression is unique. It's not that hard so I'm a bit surprised the StackExchange people didn't find it, or maybe it's just that my proof is incorrect. In any case I'll write it up and post it in a bit. --RDBury (talk) 15:50, 7 December 2018 (UTC)[reply]
Proof: Let S and T be two equivalent positive expressions in CNF which are both minimal. Let {Si} be the set of clauses in S and {Tj} be the set of clauses in T. Each Si and Tj, in turn, correspondes to a subset of a set of Boolean variables {xk}. Since S is minimal, no Si is contained in Sj for j≠i, and similarly for T. For each assignment a:xk → {T, F}, define Z(a) to be the set of variables for which a is F, i.e. Z(a) is the compliment of the support of a. A clause Si evaluates to F iff Si⊆Z(a) and the expression S evaluates to F iff Si⊆Z(a) for some i. A similar statements holds for T. Fix i and define the truth assignment ai(xk) to be 'T' when xk is not in Si, in other words ai is the truth assignment so that Z(ai) = Si. The clause Si evaluates to F under this assignment, so S evaluates to F. But S and T are equivalent so T evaluates to F. Therefore Tj⊆Z(ai)= Si for sime j. Similary, for each j there is k so that Sk ⊆ Tj.(I think another way of saying this is that S and T are refinements of each other.) If Si is an element of S, then there is Tj in T so that Tj ⊆ Si, and there is an Sk so that Sk ⊆ Tj. Then Sk ⊆ Si and so, since S is minimal, i=k. We then have Si ⊆ Tj ⊆ Si, Si = TjT. So ST and similarly TS, therefore S = T. --RDBury (talk) 17:04, 7 December 2018 (UTC)[reply]

The proof sounds great, so I beleive it's correct. Thank you! David (talk) 20:15, 10 December 2018 (UTC)[reply]