Recent content by aashish.v
-
A
A certian Linear Algebra gimmick needed for a part of my project
So this is what I understand... since the equation v'Av is a number... we can write... v'Av=(v'Av)'=v'(v'A)'=v'A'v Am I correct?- aashish.v
- Post #5
- Forum: Calculus and Beyond Homework Help
-
A
A certian Linear Algebra gimmick needed for a part of my project
I do understand intuitively how this can be true... Because of the arrangement of the equation, both side of the equation gets the same value. I am able to show that with small example,, A=\left[\begin{array}{cc} p & q\\ r & s \end{array}\right],v=\left[\begin{array}{cc} a &...- aashish.v
- Post #2
- Forum: Calculus and Beyond Homework Help
-
A
A certian Linear Algebra gimmick needed for a part of my project
1. I need to prove that for any matrix A(n,n) and a vector v(n,1) the following is true... vTAv=vTATv So far I wasn't able to think of anyway for proving this... any help will be appreciated.- aashish.v
- Thread
- Algebra Linear Linear algebra Project
- Replies: 6
- Forum: Calculus and Beyond Homework Help
-
A
Prove that: F(x1,x2, xn)<=min Fi(xi)
1. Prove that: F(x1,x2,...xn)<=min Fi(xi) Where F is a DF on (x1...xn) I know that this is very intuitive. But I am not able to find proper mathematical argument for that.- aashish.v
- Thread
- Replies: 2
- Forum: Calculus and Beyond Homework Help
-
A
Undergrad Eigen Value Approximation algorithms?
Hi Guys, I have just started studying about this field. Can you give me some ideas about some best eigen value estimators? Both for SPD and non-SPD matrices. Thanks you. :-)- aashish.v
- Thread
- Algorithms Approximation Value
- Replies: 1
- Forum: Linear and Abstract Algebra
-
A
Reading Source fr Numerical Linear Algebra?
I am using An Introduction to numerical linear algebra by Charles Cullen and I'm not very satisfied with it. Kindly suggest me some alternatives. Also suggest good linear algebra book to clear up basics. finally also suggest any online study materials, lecture notes, videos regarding the...- aashish.v
- Thread
- Algebra Linear Linear algebra Numerical Reading Source
- Replies: 2
- Forum: Science and Math Textbooks
-
A
Converegence Problem for forward and backward propogation
The typical approach shown in text is to show that if the solution of such function truns out to be in form of C.λ^n then we can say that such recursive function diverges, I have tried the same approach for the problem but the λ I am getting turns out to be function of n. I can scan and...- aashish.v
- Post #6
- Forum: Precalculus Mathematics Homework Help
-
A
Converegence Problem for forward and backward propogation
http://www.wolframalpha.com/share/clip?f=d41d8cd98f00b204e9800998ecf8427e9oo6gajcl6 view this to avoid any ambiguity- aashish.v
- Post #4
- Forum: Precalculus Mathematics Homework Help
-
A
Converegence Problem for forward and backward propogation
Yes. for forward direction we can re-write it this way.. J(n)=2*(n-1)*J(n-1)-J(n-2) and for backward propagation... J(n)=2*(n+1)*J(n+1)-J(n+2)- aashish.v
- Post #3
- Forum: Precalculus Mathematics Homework Help
-
A
C tower of hanoi - Stack Implementation using structures .
Thanks for the reply... I got it figured out... :)- aashish.v
- Post #3
- Forum: Engineering and Comp Sci Homework Help
-
A
Converegence Problem for forward and backward propogation
The function is J(n-1)+J(n+1)=2nJ(n) I need to prove that it diverges in forward direction but converges in backward direction. I am unable to find any method, kindly suggest.- aashish.v
- Thread
- Replies: 5
- Forum: Precalculus Mathematics Homework Help
-
A
C tower of hanoi - Stack Implementation using structures .
I've written a code for the problem but I'm contantly getting segmentation fault, core dump error, kindly help. I'm using gcc from ubuntu 12.04, Here is my code... #include<stdio.h> //#include<conio.h> #include<stdlib.h> struct node { int ind; int ele; struct node *next...- aashish.v
- Thread
- Structures Tower
- Replies: 2
- Forum: Engineering and Comp Sci Homework Help