how to express {2n+3m+1|n,m∈N} in list comprehension form? ( N is the set of natraul number including 0) - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T19:02:42Zhttp://stackoverflow.com/feeds/question/759554http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/759554/how-to-express-2n3m1n-mn-in-list-comprehension-form-n-is-the-set-of-natr2how to express {2n+3m+1|n,m∈N} in list comprehension form? ( N is the set of natraul number including 0)gray2009-04-17T08:35:34Z2009-04-19T20:46:40Z
<p>How do I express {2n+3m+1|n,m∈N} in list comprehension form? N is the set of natural numbers, including 0.</p>
http://stackoverflow.com/questions/759554/how-to-express-2n3m1n-mn-in-list-comprehension-form-n-is-the-set-of-natr/759586#7595867Answer by vartec for how to express {2n+3m+1|n,m∈N} in list comprehension form? ( N is the set of natraul number including 0)vartec2009-04-17T08:44:30Z2009-04-17T09:58:13Z<p>Isn't {2n+3m+1|n,m ∈ ℕ} = ℕ - {0,2}?</p>
http://stackoverflow.com/questions/759554/how-to-express-2n3m1n-mn-in-list-comprehension-form-n-is-the-set-of-natr/759691#7596917Answer by Hynek -Pichi- Vychodil for how to express {2n+3m+1|n,m∈N} in list comprehension form? ( N is the set of natraul number including 0)Hynek -Pichi- Vychodil2009-04-17T09:14:45Z2009-04-17T09:14:45Z<p>Shortly:</p>
<pre><code>1:[3..]
</code></pre>
http://stackoverflow.com/questions/759554/how-to-express-2n3m1n-mn-in-list-comprehension-form-n-is-the-set-of-natr/761441#7614413Answer by newacct for how to express {2n+3m+1|n,m∈N} in list comprehension form? ( N is the set of natraul number including 0)newacct2009-04-17T17:38:20Z2009-04-17T17:38:20Z<p><code>[2*n + 3*m +1 | m <- [0..], n <- [0..]]</code> won't work because it starts with <code>m = 0</code> and goes through all the <code>n</code>, and then has <code>m = 1</code> and goes through all the n, etc. But just the <code>m = 0</code> part is infinite, so you will never get to m = 1 or 2 or 3, etc. So <code>[2*n + 3*m +1 | m <- [0..], n <- [0..]]</code> is exactly the same as <code>[2*n + 3*0 +1 | n <- [0..]]</code>.</p>
<p>To generate all of them, you either need to realize, like users vartec and Hynek -Pichi- Vychodil, that the set of numbers you want is just the natural numbers - {0,2}. Or you need to somehow enumerate all the pairs (m,n) such that m,n are nonnegative. One way to do that is to go along each of the "diagonals" where <code>m + n</code> is the same. So we start with the numbers where <code>m + n = 0</code>, and then the ones where <code>m + n = 1</code>, etc. Each of these diagonals has a finite number of pairs, so you will always go on to the next one, and all the pairs (m,n) will eventually be counted.</p>
<p>If we let <code>i = m + n</code> and <code>j = m</code>, then <code>[(m, n) | m <- [0..], n <- [0..]]</code> becomes <code>[(j, i - j) | i <- [0..], j <- [0..i]]</code></p>
<p>So for you, you can just do</p>
<pre><code>[2*(i-j) + 3*j +1 | i <- [0..], j <- [0..i]]
</code></pre>
<p>(Of course this method will also produce duplicates for you because there are multiple (m,n) pairs that generate the same number in your expression.)</p>
http://stackoverflow.com/questions/759554/how-to-express-2n3m1n-mn-in-list-comprehension-form-n-is-the-set-of-natr/762806#7628064Answer by Norman Ramsey for how to express {2n+3m+1|n,m∈N} in list comprehension form? ( N is the set of natraul number including 0)Norman Ramsey2009-04-18T03:09:28Z2009-04-18T03:09:28Z<p>The following Haskell function will give you all pairs from two lists, even if one or both is infinite. Each pair appears exactly once:</p>
<pre><code>allPairs :: [a] -> [b] -> [(a, b)]
allPairs _ [] = []
allPairs [] _ = []
allPairs (a:as) (b:bs) =
(a, b) : ([(a, b) | b <- bs] `merge`
[(a, b) | a <- as] `merge`
allPairs as bs)
where merge (x:xs) l = x : merge l xs
merge [] l = l
</code></pre>
<p>You could then write your list as </p>
<pre><code>[2 * n + 3 * m + 1 | (n,m) <- allPairs [0..] [0..] ]
</code></pre>
<p>To get a feel for how it works, draw an infinite quarter-plane, and look at the results of</p>
<pre><code>take 100 $ allPairs [0..] [0..]
</code></pre>
http://stackoverflow.com/questions/759554/how-to-express-2n3m1n-mn-in-list-comprehension-form-n-is-the-set-of-natr/766063#7660630Answer by hiena for how to express {2n+3m+1|n,m∈N} in list comprehension form? ( N is the set of natraul number including 0)hiena2009-04-19T20:41:24Z2009-04-19T20:46:40Z<p>You can try enumerating all pairs of integers.
This code is based in the enumeration described in <a href="http://www.cs.berkeley.edu/~wkahan/Math55/pairs.ps" rel="nofollow">http://www.cs.berkeley.edu/~wkahan/Math55/pairs.ps</a> (doesn't include 0)</p>
<pre><code>data Pair=Pair Int Int deriving Show
instance Enum Pair where
toEnum n=let l k=truncate (1/2 + sqrt(2.0*fromIntegral k-1))
m k=k-(l k-1)*(l k) `div` 2
in
Pair (m n) (1+(l n)-(m n))
fromEnum (Pair x y)=x+((x+y-1)*(x+y-2)) `div` 2
</code></pre>
<p>But you can use another enumeration.</p>
<p>Then you can do:</p>
<pre><code>[2*n+3*m+1|Pair n m<-map toEnum [1..]]
</code></pre>