Recent content by Jimena29
-
J
Standard ML help datatype problem
Sorry, I didn't notice you had replied until now. But thank you so much! If anyone has a problem like this I solved it, here's my code : datatype 'a peano = P of ('a -> 'a) * 'a -> 'a val zero = P(fn (f, x) => x)(* create : int -> 'a peano * create(n) = the Peano number representing n *...- Jimena29
- Post #3
- Forum: Programming and Computer Science
-
J
Hermitian matrix vector space over R proof
Oh, I thought I also had to prove that the matrix A is contained in R Thank you very much!- Jimena29
- Post #3
- Forum: Calculus and Beyond Homework Help
-
J
Hermitian matrix vector space over R proof
Homework Statement I need to prove that the hermitian matrix is a vector space over R Homework Equations The Attempt at a Solution I know the following: If a hermitian matrix has aij = conjugate(aji) then its easy to prove that the sum of two hermitian matrices A,B give a hermitian...- Jimena29
- Thread
- Hermitian Matrix Proof Space Vector Vector space
- Replies: 2
- Forum: Calculus and Beyond Homework Help
-
J
Standard ML help datatype problem
Standard ML help! datatype problem I have to create a function about peano numbers defined as the following datatype: datatype 'a peano = P of ('a -> 'a) * 'a -> 'a I have to create a function about peano numbers defined as the following datatype: datatype 'a peano = P of ('a -> 'a) *...- Jimena29
- Thread
- Standard
- Replies: 2
- Forum: Programming and Computer Science