Test if 2 transformations produce equivalent relations to a reference

nitroamos
Messages
4
Reaction score
0
Hello --

I have some reference object R (e.g. a protein), and I've got two transformations t1 and t2 (e.g. a transformation = quaternion + translation). In my case, t1 and t2 were obtained from symmetry operations.

So after applying t1 to R I get object T1, and after applying t2 to R I get object T2. How do I determine whether system S1=R+T1 is equivalent to system S2=R+T2? That is, after eliminating the 6 laboratory degrees of freedom, whether S1 =?= S2?

The only way I can think of is to actually make S1 and S2 (or a subset of their points), minimize the root-mean-square-deviation of coordinates in S1 vs S2, and see if the rmsd == 0. However, my intuition says there should be something I can test in t1 vs t2 to determine this.

For example, I know that S1 and S2 are not equivalent if the magnitude of the two translations are different. Here's some sample data:

0[ -0.02845, -0.11515, -0.48573, 0.86603][ -30.36901, 16.88513, -10.19267][ -44.14951, 9.93415, -7.73766] dist = 15.6283439198
1[ -0.04928, -0.19945, -0.84130, 0.50000][ -30.36901, 16.88513, -10.19267][ -57.37728, 18.17323, -8.91610] dist = 27.0690857072
2[ -0.05690, -0.23030, -0.97145, 0.00000][ -30.36901, 16.88513, -10.19267][ -56.82456, 33.36329, -12.54953] dist = 31.2566878395
3[ -0.04928, -0.19945, -0.84130, -0.50000][ -30.36901, 16.88513, -10.19267][ -43.04406, 40.31426, -15.00454] dist = 27.0690857072
4[ -0.02845, -0.11515, -0.48573, -0.86603][ -30.36901, 16.88513, -10.19267][ -29.81629, 32.07518, -13.82610] dist = 15.6283439198


which represents a system describable as a C6 cyclic rotation, one row for each transformed unit. The first brackets have the quaternion (x,y,z,w), the second brackets are the pre-rotation translation, and the third brackets are the post-rotation translation. Lastly, I went ahead and computed the total translation distance = mag(post-pre). So looking at the distances, you can immediately guess that 0 and 4 are the units adjacent to the reference (i.e. ortho), 1 and 3 are meta, and 2 is para. The relationship between the reference and both ortho units have the equivalence I'm looking for, while the reference and the meta units also have that equivalence. The reason I want to know this is because if S1 and S2 are the same, I only need to calculate the energy for one of them and multiply it by 2.

For Cn, I already know which transformations are equivalent, but since I'm looking into implementing more complicated symmetry groups, I'm interested in simply detecting equivalence.

Thanks for any advice!


To see what I mean by ortho, meta, para:
http://en.wikipedia.org/wiki/Arene_substitution_patterns
 
Physics news on Phys.org
I implemented the test I described (i.e. rmsd) and it has the problem that rmsd can't distinguish between S1=R+T1 and S1=T1+R. That is, the order of the points matters to rmsd, but not to me. My new test is to compare the distance between all pairs of points...
 
##\textbf{Exercise 10}:## I came across the following solution online: Questions: 1. When the author states in "that ring (not sure if he is referring to ##R## or ##R/\mathfrak{p}##, but I am guessing the later) ##x_n x_{n+1}=0## for all odd $n$ and ##x_{n+1}## is invertible, so that ##x_n=0##" 2. How does ##x_nx_{n+1}=0## implies that ##x_{n+1}## is invertible and ##x_n=0##. I mean if the quotient ring ##R/\mathfrak{p}## is an integral domain, and ##x_{n+1}## is invertible then...
The following are taken from the two sources, 1) from this online page and the book An Introduction to Module Theory by: Ibrahim Assem, Flavio U. Coelho. In the Abelian Categories chapter in the module theory text on page 157, right after presenting IV.2.21 Definition, the authors states "Image and coimage may or may not exist, but if they do, then they are unique up to isomorphism (because so are kernels and cokernels). Also in the reference url page above, the authors present two...
When decomposing a representation ##\rho## of a finite group ##G## into irreducible representations, we can find the number of times the representation contains a particular irrep ##\rho_0## through the character inner product $$ \langle \chi, \chi_0\rangle = \frac{1}{|G|} \sum_{g\in G} \chi(g) \chi_0(g)^*$$ where ##\chi## and ##\chi_0## are the characters of ##\rho## and ##\rho_0##, respectively. Since all group elements in the same conjugacy class have the same characters, this may be...

Similar threads

Back
Top