Mapping Conditions in Transformational Space

CluelessEngg
Messages
1
Reaction score
0
Hello,
My problem is as follows:
I want to generate a series of 24 dimensional random numbers to act as the starting population for a genetic algorithm. These numbers need to fully span the space which is limited by a series of nonlinear boundary conditions.

The 24 dimensional vector is a scaling vector which scales currents flowing in 64 different coils. There is a linear transformation matrix (call it A) [64x24] which maps the scaling vector (call it x) to the current space (call this vector B). So the problem is Ax = B.

The problem is the boundary conditions for the space are in the 64 dimensional current space. The conditions are:
1) The current in a given coil cannot exceed abs(500mA) (each abs(B(:))< 500mA)
2) The total sum of positive currents cannot exceed 6000mA
3) The total sum of negative currents cannot exceed -6000mA
4) The difference between positive and absolute value of negative currents cannot exceed 2500mA.

How can I bound the problem space so that the random number generator doesn't continuously generate illegal values?

Any insight would be greatly appreciated.
 
Physics news on Phys.org
Clarify whether all the the constraints are expressible as linear inequalities involving the members of B.

Suppose the problem is to generate random vectors x
subject to constraints defined by

A_{[64 \times 24]} x_{[24 \times 1]} = B_{ [64 \times 1] }

where B can be any matrix satisfying linear constrains of the form

C^i_{[1 \times 64]} B_{[64 \times 1]} \ge 0 for i = 1,2,..N

Since the members of B are linear combinations of the members of x, the constraints can be re-written as linear constraints on the members of x.

So the problem becomes to generate random vectors x satisfying a system of linear constraints of the form
D^i_{[1 \times 64]} x_{[64 \times 1]} \gt 0, i = 1,2,..N.

I don't think this is an easy mathematical problem, but it seems to be essence of what must be done.
 
##\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...
Back
Top