Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
520 views

Computer algebra for Clojure

Short version: I am interested in some Clojure code which will allow me to specify the transformations of x (e.g. permutations, rotations) under which the value of a function f(x) is invariant, so ...
8
votes
2answers
168 views

Eliminating symmetry from graphs

I have an algorithmic problem in which I have derived a transfer matrix between a lot of states. The next step is to exponentiate it, but it is very large, so I need to do some reductions on it. ...
6
votes
2answers
176 views

3D symmetry search algorithm

This may be more appropriate for math overflow, but nevertheless: Given a 3D structure (for example, a molecule), what is a good approach/algorithm to find symmetry ...
4
votes
6answers
249 views

Overriding equals method without breaking symmetry in a class that has a primary key

the answer to this question is probably "not possible", but let me ask regardless :) Assuming we have a very simple JAVA class that has a primary key, for example: class Person { String ssid; ...
0
votes
1answer
54 views

WFP FlowDocument Symmetry Layout

My question is: By user WPF controls FlowDocument , how to generate a symmetrical layout in one flowDocument? My code is <Grid Name="grid1"> <FlowDocumentScrollViewer Name="name1" ...
0
votes
2answers
148 views

Algorithm to Calculate Symmetry of Points

Given a set of 2D points, I want to calculate a measure of how horizontally symmetrical and vertically symmetrical those points are. Alternatively, for each set of points I will also have a ...
0
votes
1answer
41 views

How to represent Symmetry relationships in database modeling

If there is a symmetry relationship in a table, how to represent it in a elegant way? For example, there is a table called Friend, in which should contain user ID of two users. If we use UID1 and UID2 ...
0
votes
1answer
267 views

Partition a set of numbers into two parts with the smallest difference

Special thanks to one that can help: Partition a set of numbers (n numbers) into 2 subset so that the sum of numbers in subset 1 has the least difference with the sum of numbers in subset 2. Also the ...