473,287 Members | 1,501 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,287 software developers and data experts.

Re: set partition question

On May 25, 7:46*pm, miller.pau...@gmail.com wrote:
I think this problem is related to integer partitioning, but it's not
<snip>
>
If, by "integer partitioning," you mean the "subset sum
problem" (given a finite set S of integers, does S contain a subset
which sums up to some given integer k?), then you are right. *I'm
reasonably sure there's a polynomial reduction from your problem to
the subset sum problem. *That would make your problem NP-complete.
Wow, that's helpful. http://en.wikipedia.org/wiki/Subset_sum clarifies
what I'm trying to do. Yes, it probably is NP-complete. Fortunately my
use case doesn't require that the process finish, just that it produce
a lot. I can exclude trivial cases (e.g., f' = f(S) + s_1 - s_1) with
some sort of simplifier.
Like I said, because this looks related to the subset sum problem
(though harder, because you're asking for "all" such functions, for
some rigorous definition of "all," as per the previous sentence), I
suspect it's NP-complete. *However, there are probably some good
heuristics, such as if s1 has a large intersection with s0, it's
probably a good idea to use s1 in whatever formula you come up with.
There are a few real-world constraints which make the problem easier,
but only by linear factors, I suspect. More on this below.

Other than that, I don't really have an idea. *Can you say what the
application of this algorithm would be? *Knowing the use case might
suggest a better approach.
This is a problem in statistical estimation. Given n records made up
of k variables, define a cell as the point in the cartesian product of
v_1 * v_2 * ... * v_k. I want to apply an estimator on the data in
each cell.

However, many cells are empty, and others are too sparse to support
estimation. One solution is to build lots of valid aggregations,
called "strata," for which estimates can be made for chunks of cells.
A "valid aggregation" is a sequence of *adjacent* cells (see below)
whose data are pooled (by whatever mechanism is relevant to the
estimator).

The cells are "elements" in my initial problem statement, and the
strata are the sets.

The constraints I mentioned are on the composition of strata: strata
can only contain sequences of adjacent cells, where adjacency is
defined for each variable. Two cells are adjacent if they are equal on
every variable except one, and on that one and by its definition, they
are adjacent.

Does this make it easier to understand, or more difficult? thanks --
PB.

Jun 27 '08 #1
2 1420
On May 25, 11:40*pm, pball.benet...@gmail.com wrote:
This is a problem in statistical estimation. Given n records made up
of k variables, define a cell as the point in the cartesian product of
v_1 * v_2 * ... * v_k. I want to apply an estimator on the data in
each cell.
So, basically, V = (v_1, v_2, ... , v_{k-1}, v_k) can be regarded as
an abstract, k-dimensional vector, right?

If I understand your revised problem statement correctly, what you
really want to do is build a graph of these vectors, where graph
adjacency is equivalent to adjacency in your sense. That is, imagine
you have V_1, V_2, ... , V_n all sitting out in front of you,
represented abstractly as simple points. Draw a line between V_i and
V_j if they are "adjacent" in your sense of the word. What you have
then is a graph structure where your version of adjacency exactly
corresponds to graph adjacency. Then, in your language, a stratum is
simply a path in this graph, and finding those is easy.

That is, unless I've got this all wrong. :-)
Jun 27 '08 #2
On May 25, 10:41*pm, miller.pau...@gmail.com wrote:
So, basically, V = (v_1, v_2, ... , v_{k-1}, v_k) can be regarded as
an abstract, k-dimensional vector, right?
Yes.

If I understand your revised problem statement correctly, what you
really want to do is build a graph of these vectors, where graph
adjacency is equivalent to adjacency in your sense. *That is, imagine
you have V_1, V_2, ... , V_n all sitting out in front of you,
represented abstractly as simple points. *Draw a line between V_i and
V_j if they are "adjacent" in your sense of the word. *What you have
then is a graph structure where your version of adjacency exactly
corresponds to graph adjacency. *Then, in your language, a stratum is
simply a path in this graph, and finding those is easy.
You're solving an earlier part of the problem which I call stratum
generation. I've never thought to use a graph representation for
stratum generation -- very interesting, and I'll pursue it. Would you
be willing to outline how you'd do it here?

I've had fun "breeding" strata using genetic algorithms, and a lot of
interesting ideas came out of that experiment, in particular the
utility of building randomly shaped strata to do indirect estimates
(the objective of the set arithmetic described here). I used GA's
because I think that the space of possible strata is too big to search
by brute force.

I'd still like to have the graph representation for the brute force
solution. Or, in another random algorithm, the graph could be a
sampling frame from which random paths could be pulled.

In a real dataset, some of the strata will contain adequate data to
make an estimate, and these are called valid strata. Other legal
strata (as shown by a path through the graph) may not have adequate
data to make an estimate (thus, legal but invalid).

We've done this problem by hand: observing that we can estimate a
stratum (1,2,3) and another (2,3) but not (1). So
E(1) = E(1,2,3) - E(2,3)
There are issues with the variance of E(1), but that's a very
different problem. Using the valid strata E(1,2,3) and E(2,3) we've
made an indirect estimate of E(1).

I'm looking for an algorithm which automates the search for
combinations like the one above. Given a set of valid strata[1], yield
combinations of valid strata which, when combined via union or
difference[2], evaluate to a stratum (adjacent but possibly not
valid). The combination of valid strata is called an indirect
estimate

[1] strata can be generated via many methods; they all end up in the
same database
[2] Note that the set of operations is shrinking :)

Thanks in advance for your thoughts -- PB.

Jun 27 '08 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Surendra | last post by:
I have this query that I need to use in an Update statement to populate a field in the table by the value of Sq ---------------------------------------------------------------------------- Inline...
5
by: sameer_deshpande | last post by:
Hi, I need to create a partition table but the column on which I need to create a partition may not have any logical ranges. So while creating or defining partition function I can not use any...
25
by: John Salerno | last post by:
Forgive my excitement, especially if you are already aware of this, but this seems like the kind of feature that is easily overlooked (yet could be very useful): Both 8-bit and Unicode strings...
3
by: Justin | last post by:
What is the syntax to overlap partitions? Lets assume I want a year split amount 4 months (3 partitions for a year) and later adding an additional set of partitions for every 6 months. Plus...
2
by: Geolas | last post by:
Hi, new to this community.I am not really sure if this was the right place, because this community seem to be for developers really. Well my question is, as the topic states, how to create a...
0
by: MeoLessi9 | last post by:
I have VirtualBox installed on Windows 11 and now I would like to install Kali on a virtual machine. However, on the official website, I see two options: "Installer images" and "Virtual machines"....
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: Aftab Ahmad | last post by:
Hello Experts! I have written a code in MS Access for a cmd called "WhatsApp Message" to open WhatsApp using that very code but the problem is that it gives a popup message everytime I clicked on...
0
by: Aftab Ahmad | last post by:
So, I have written a code for a cmd called "Send WhatsApp Message" to open and send WhatsApp messaage. The code is given below. Dim IE As Object Set IE =...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.