Skip to main content

All Questions

0 votes
0 answers
34 views

How DTW decides which element to take next?

I'm currently working on an DTW algorithm implementation and do have a question about how DTW works if the next steps are the same or if the correct next step is the actually not less-cost one. I do ...
Dixit Dominus's user avatar
0 votes
0 answers
64 views

Counting the number of "permitted" pairings between two sets

Suppose I have two sets $A$ and $B$. We will be considering pairs of elements $(a,b)$, where $a\in A$ and $b \in B$. I have a function $f(a,b) \rightarrow \{0,1\}$, i.e. for each pair I can say ...
Ben Farmer's user avatar
0 votes
0 answers
55 views

Is there a way to do the Hungarian algorithm in reverse?

The Hungarian algorithm is used to find the optimal choices for a given 'cost matrix' e.g. going from the output of the Hungarian algorithm ...
Machai's user avatar
  • 1
0 votes
1 answer
22 views

How could I find the optimal paired values for given incidence matrix? [closed]

I'm not a mathematician so it's possible that I'm using incorrect terminology here, but I'll try to explain. Say I have an arbitrary evenly sized list of variables (for instance, A to H). Each of ...
CookieSteve's user avatar
1 vote
1 answer
217 views

Maximum matching and minimum vertex cover problem, that seemingly violates Koning's lemma

We have the following bi-adjacency matrix of a bipartite graph: \begin{bmatrix}0&0&1&0&1&0\\1&1&0&1&0&1\\0&0&1&0&1&0\\1&1&1&1&...
Mattwi's user avatar
  • 13
0 votes
1 answer
586 views

Proof that bipartite graph has perfect matching if and only if zero sub-matrix is not included

How to proof that Binary matrix of $n\times n$ dimension contains $n$ ones none of which two lie in the same row or column, if and only if matrix that represents graph doesn't contain zero sub-...
dagi12's user avatar
  • 103
3 votes
0 answers
166 views

Chinese Chess and Perfect Matchings

Chinese Chess is a game with $90$ positions. The opening game has $32$ pieces on the board. The pieces come in $14$ varieties and each variety during their entire game play is restricted to certain ...
William Entriken's user avatar
2 votes
0 answers
615 views

Permanent of a square block matrix

I've run into the following expression involving the permanent of a matrix: $$ \operatorname{per}\left( \left[ \begin{array}{cc} A & B\\ I & C \end{array} \right] \right) $$ Where $A$ and $C$ ...
Javier C.'s user avatar
3 votes
1 answer
497 views

In an $n\times n$ nonnegative matrix, there are at least $n$ positive entries from distinct rows and from distinct columns.

All entries of an $n \times n$ matrix are non-negative. It is known that the sum of numbers in any row and in any column of this matrix is exactly $1$. Prove that you can choose $n$ positive entries ...
user250181's user avatar
5 votes
1 answer
398 views

Optimal Matching Distance

I'm stuck on problem II.5.9 from Bhatia's Matrix Analysis. The problem is as follows: Let $\left(\lambda_1,\dots,\lambda_n\right)$ and $\left(\mu_1,\dots,\mu_n\right)$ be two $n$-tuples of complex ...
Ben Grossmann's user avatar