São Borja Brasil de Pelotas Aimoré Novo Hamburgo São José-RS Bagé Cascavel Santo André Lajeadense Ypiranga-RS São Luiz Pelotas Rio Branco-SP Grêmio Portuguesa de Desportos Rio Branco-SP Bragantino Rio Branco-SP Juventude Ponte Preta Internacional Figueirense Criciúma
Jorge Antônio Dornelles Carpes, mais conhecido como Cassiá (São Borja, 14 de junho de 1953) é um ex-futebolista, treinador e político brasileiro.
Foi presidente da Fundação do Esporte e Lazer do Estado do Rio Grande do Sul. Foi deputado estadual no Rio Grande do Sul por dois mandatos, tendo concorrido como Vice-Governador do Estado do Rio Grande do Sul pelo Solidariedade (SD), na coligação Esperança que Une o Rio Grande, tendo como candidata ao Governo Ana Amélia Lemos, do PP no ano de 2014.
Atualmente é membro do PP e vereador de Porto Alegre.
Índice
1Títulos
1.1Como jogador
1.2Como treinador
1.3Como político
2Vida pessoal
3Referências
4Ligações externas
Títulos |
Como jogador |
Grêmio
Campeonato Gaúcho: 1977.
Operário-MS
Campeonato Sul-Mato-Grossense: 1981.
Como treinador |
Grêmio
Campeonato Gaúcho: 1993.
Pelotas
Campeão do Interior: 1992
Como político |
No início da década de 2000, ingressou na carreira política, filiando-se ao PTB no Rio Grande do Sul. Elegeu-se vereador em 2000 e foi reeleito em 2004, sendo, logo no início deste mandato, em 2005, indicado pelo então prefeito de Porto Alegre, José Fogaça, para ser o titular da Secretaria Municipal de Obras e Viação (SMOV) da Capital.
Renunciou ao cargo de secretário e de vereador em 2006[3], para concorrer a deputado estadual, também pelo PTB. Foi eleito com 23.430 votos[4]. Em 2010, obteve a reeleição para o cargo, com 30.817 votos[5].
Em 2014 concorreu como Vice Governador, na chapa liderada pela Senadora Ana Amélia Lemos.
Em 2016 ingressou ao Partido Progressista, após breve tempo sem partido.
Vida pessoal |
É casado com a advogada Christiane Amorim Carpes e tem dois filhos[6].
0
$begingroup$
I tried to think about some characteristics of the trees, for example, they have a number of edges equal to $|text{Vertices}|-1$ and of course the handshaking lemma but I couldn't find properly logical reasoning. Any help?
discrete-mathematics graph-theory trees
share | cite | improve this question
edited Dec 24 '18 at 18:01
EdOverflow
251 1 9
asked Dec 24 '18 at 17:44
PCNF PCNF
133 8
...
0
$begingroup$
I'm trying to create a 3-rank tensor in numpy, with python3.x. I need to create this 3-rank tensor A in a very particular way. If I have 3 matrices, let's say that all of them are some $Y$ matrix (which is dimensionally $4x4$ ), then it must be of the following mathematical form: $A((in),(jk),(lm))$ from some type of multiplication roughly like: $"Y_{4}(i,j) otimes Y_{4}(k,l) otimes Y_{4}(m,n)"$ . So, in a sense, I must connect the "input" of a matrix to the "output" of another identical matrix, for three identical matrices. The final 3-rank tensor $A$ should have dimensions 16x16x16. Mathematically, I'm not sure if this corresponds to a tensor product or a kronecker product. Obviously this makes a big difference, as in numpy for python, the funct...
2
$begingroup$
I'm concerning myself with factoring semi-primes and believe that if given a large semi-prime ( $N$ ) one finds a non-trivial sum of squares representation: $$ x^2 + y^2 = N$$ Then one can efficiently retrieve a factorization of $N$ . My intuition for this belief is that I think the "factoring" problem over the gaussian integers is difficult and note that such a representation can be in linear time converted into a factorization $(x + yi) ( x- yi)$ when considering gaussian integers. But it's not clear to me how to leverage this information for regular integers. More Notes: So I realized after @Jack D'Aruzio's comment that this information could be exploited by computing $i$ mod $N$ That is finding some constant $c$ such that $c^2 = -1 mod N$ . Then we have...