Tagged Questions

In logic, quantification is the binding of a variable ranging over a domain. The variable thereby becomes bound by an operator called a quantifier. The two fundamental kinds of quantification in predicate logic are universal quantification and existential quantification.

learn more… | top users | synonyms

23
votes
4answers
614 views

what does “exists” mean in Haskell type system?

I'm struggling to understand the exists keyword in relation to Haskell type system. As far as I know, there is no such keyword in Haskell by default, but: There are extensions which add them, in ...
7
votes
1answer
587 views

Closures and universal quantification

I've been trying to work out how to implement Church-encoded data types in Scala. It seems that it requires rank-n types since you would need a first-class const function of type forAll a. a -> ...
3
votes
4answers
154 views

Regex Python / group quantifiers

I want to match a list of variables which look like directories, e.g.: Same/Same2/Foot/Ankle/Joint/Actuator/Sensor/Temperature/Value=4.123 Same/Same2/Battery/Name=SomeString ...
3
votes
2answers
3k views

Javascript Invalid quantifier in regex

The regex is constructed on the fly, but I've output it to firebug: (.{1,38})(+|$\n?) the error is invalid quantifier +|$\n?) I'm not sure where to start. The actual code is: var re = ...
2
votes
1answer
51 views

How to skolemize multiple combinations of universal and existential quantifieres?

What is the skolemized form of (∀u∃v a(u,v)) ∧ (∀x∃y a(x,y)) ? I am unsure, because there are different perenex normal forms possible: ∀u∃v ∀x∃y (a(u,v) ∧ a(x,y)) ∀u∀x ∃v∃y (a(u,v) ∧ a(x,y)) … ...
2
votes
3answers
90 views

Ambiguous type using explicit quantifiers

Minimal example code: class IntegralAsType a where value :: (Integral b) => a -> b class (Num a, Fractional a, IntegralAsType q) => Zq q a | a -> q where changeBase:: forall p b . ...
2
votes
1answer
53 views

Display quantified-out formula

how do I display the result of quantifier elimination ? z3 seems to be happy with the following input (set-option :elim-quantifiers true) (declare-fun y () Real) (simplify (exists ((x Real)) (>= ...
2
votes
2answers
95 views

How can I access capture buffers in brackets with quantifiers?

How can I access capture buffers in brackets with quantifiers? #!/usr/local/bin/perl use warnings; use 5.014; my $string = '12 34 56 78 90'; say $string =~ s/(?:(\S+)\s){2}/$1,$2,/r; # Use of ...
2
votes
6answers
97 views

Perl REGEX Question

As a PHP programmer new to Perl working through 'Programming Perl', I have come across the following regex: /^(.*?): (.*)$/; This regex is intended to parse an email header and insert it into a ...
2
votes
1answer
145 views

Quantifier range not working in lookbehind

Okay so I'm working on a project where I need a regex that can match a * followed by 1-4 spaces or tabs and then followed by a row of text. Right now I'm using .* after the lookbehind for testing ...
1
vote
1answer
52 views

Javascript RegEx “invalid quantifier”

var search = new RegExp("<span class=\"highlight\">(?<text>.*)</span>", "g"); Is there something wrong with the RegEx? Firebug just says "invalid quantifier". Thats it, no more ...
1
vote
1answer
112 views

Customize LIA quantifier elimination in Z3

I'm doing quantifier elimination on LIA using F# and Z3 3.2 API. Z3 used to have QUANT_ARITH configuration which indicates the use of Cooper's method or the Omega test for LIA quantifier ...
1
vote
1answer
83 views

Why is the rightmost character captured in backreference when using a character class with quantifiers?

If I have pattern ([a-z]){2,4} and string "ab", what would I expect to see in backreference \1 ? I'm getting "b", but why "b" rather than "a"? I'm sure there is a valid explanation, but reading ...
1
vote
2answers
109 views

Java regex very slow (translate nested quantifiers to possessive quantifiers)

I've found this regular expression to match urls (originally in Javascript by Daring Fireball) which in java works but in some cases is extremly slow: private final static String pattern = "\\b" + ...
1
vote
1answer
33 views

RewriteRule: which regex quantifier are permitted?

I'd like to know if I can use a quantifier {x} in order to define a RewriteRule. RewriteRule ^([0-9]{3})([0-9]{2})-page/?$ /www/page.php?firstId=$1&secondId=$2 Can I write something like this? ...
1
vote
4answers
111 views

Populating Automatic Perl Variables when using Quantifiers

I was trying to match the following line 5474c2ef012a759a c11ab88ae8daa276 63693b53799c91f1 be1d8c8738733d80 with if(/[[:xdigit:]{8}[:xdigit:]{8}\s]{4}/) Is there anyway I populate the ...
1
vote
2answers
90 views

alternative greedy match

I want to make a greedy match to an alternative of either zero to 'm' consecutive occurences of 'a' or zero to 'n' consecutive occurences of 'b'. If I do /a{,m}|b{,n}/ it will not work because when ...
0
votes
3answers
31 views

JavaScript Regular Expression with character class quantifier variable

I am trying to create a regular expression with a character class that has a specific quantifier which is a variable for example: var str = "1234.00"; var quantifier = 3; str = ...
0
votes
4answers
53 views

Why doesn't the RegExp “greedy” mode work?

I do not understand the behavior. I have such example, need to catch html comment. var str = '.. <!--My -- comment test--> '; var regex1 = /<!--[.]*-->/g; var regex2 = ...
0
votes
2answers
34 views

Sequential v/s Nested loop structure parsing using regex

The input can be either 1. or 2. or a combination of both. Sequential ... startLoop setSomething endLoop startLoop setSomething endLoop ... The regex I use ...
0
votes
0answers
18 views

formal axiomatic def of an example Kripke model in terms of ∀, ∃

I am looking for a formal axiomatic definition of an example Kripke model in terms of ∀, ∃ assuming knowledge of simple predicate logic, boolean logic,... All descriptions of Kripke models I ...
0
votes
2answers
36 views

ASP.Net Regular Expression issue for greedy quantifiers

I have asp.net application where string is created in following way. string abc; abc="vindo|vindo|vind?40|vind?40|vincent van uden|vilm|vilm|slim?new|compas|*|darkc?loud"; Regex ABCRegex = new ...
0
votes
1answer
31 views

Can someone explain to be what is going on here? existential universal quantifications

I have to program (C++) and find the true value of the following. I am uncertian as to what it exactly means. AxAy(C(x, y) -> ((Aw(C(x, w) -> w = y) ^ (Az(C(z, y) -> z = x)) note that the ...
0
votes
1answer
54 views

Regex optional group fails whole search

I'm stuck with something obvious which I can't make working: There is a text like: ".... blah-blah-blah... Grupper blah-blah-blah Butik ...". Grupper is an optional token - can be omitted in text and ...
0
votes
1answer
47 views

Represent the English statement into Quantifiers

Here is a statement C(x): x has a cat D(x): x has a dog F(x): x has a Ferret represent using quantifiers and logical connectives. Under the domain "all students in your class" 1) No student in ...
0
votes
2answers
96 views

Emulating possessive quantifiers

Is it possible to emulate possessive quantifiers (.NET doesn’t support it) using atomic grouping (or in other way)? Note. I found that (x+x+)++y can be replaced with (?>(x+x+)+)y, but this is just ...
0
votes
1answer
192 views

Existential and Universal quantifiers in DBMS

I understand what they are and I have seen examples regarding these. One such example is {t.Fname,t.Lname|Employee(t) AND (∃d)(Department(d) AND d.Dname='Research' AND d.Dnumber=t.Dno)} Now what is ...
0
votes
1answer
61 views

How to create a .NET Regex with a dynamic quantifier

I am trying to extract blocks of JSON data from a data stream in the following format: Some-Header-Name:Value Content-Length:Value Some-Other-Header:Value {JSON data string of ...
0
votes
1answer
401 views

Java Pattern match

I've a long template from which I need to extract certain strings based on certain patterns. When I went through some examples I found that use of quantifiers is good in such situations.For example ...
-1
votes
3answers
50 views

javascript regex invalid quantifier error

I have the following javascript code: if (url.match(/?rows.*?(?=\&)|.*/g)){ urlset= url.replace(/?rows.*?(?=\&)|.*/g,"rows="+document.getElementById('rowcount').value); }else{ ...