[Show all top banners]

raju2005
Replies to this thread:

More by raju2005
What people are reading
Subscribers
:: Subscribe
Back to: Kurakani General Refresh page to view new replies
 MATRIX
[VIEWED 7479 TIMES]
SAVE! for ease of future access.
Posted on 01-10-10 10:04 PM     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

does n e body have any idea how to find the determinant of (A^100) ?

|A^100| = ?

thanks in advance

 
Posted on 01-10-10 10:12 PM     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

Below is the program in C++ to find the determinant of matrix

#include<iostream.h>
#include<conio.h>
#include<math.h>
#include<stdlib.h>

typedef struct
{
       int order;
       int **ar;        //for a 2-d array

}matrix;

int create( matrix *a,int order)
{
      if(order<1)
        return 0;             //checks for invalid order

      a->order=order;

      a->ar= (int**) malloc(order*sizeof(int *)); //allocate space for each row

      if(!a->ar)
        return 0;            //checks if memory is allocated

     for(int i=0;i<order;i++)
      { a->ar[i]=(int*) malloc(order*sizeof(int));
        if(!a->ar)
         return 0;
      }
       return 1;
}

void input(matrix *a )
{
        int i,j;
        for( i = 0; i < a->order; i++ )
         for( j = 0; j < a->order; j++ )
            {
                printf("Enter element at ( %d, %d ): ", i+1, j+1 );
                scanf("%d", &a->ar[i][j] );
             }
}

void display( matrix *a )
{
            int i,j;
           
            if( a->order < 1 )
            return;
           
            for( i = 0; i < a->order; i++ )
                {
                for( j = 0; j < a->order; j++ )
                printf("%5d ", a->ar[i][j] );
               
                printf("\n");
                }
}
int calcminor(matrix *a, matrix *minor, int row,int column)

{
       int p,q;

       if(a->order<=1||row>=a->order||column>=a->order)
     return 0;

       if(!create(minor,a->order-1))
     return 0;

       p=q=0;

       for(int i=0;i<a->order;i++)
         if(i!=row)
     {
           q=0;
         for(int j=0;j<a->order;j++)
           { if(j!=column)
           minor->ar[p][q]=a->ar[i][j];
           q++;
           }
        p++;
     }
     return 1;
}

void destroy(matrix *a)

{
     if(a->order<1)
       return;

       for(int i=0;i<a->order;i++)
         free(a->ar[i]);         // free space for the column

         free(a->ar);       //free memory  for rows
         a->order=0;
}

int calcdet(matrix *a)

{
       int result=0;

       matrix minor;

       if(a->order<1)
         return 0;

       if(a->order==1)      // stopping condition
         return a->ar[0][0];     //returns 0,0 element

       for(int i=0;i<a->order;i++)

     {
          if(!calcminor(a,&minor,0,i))
             return 0;
          result+=( pow(-1,i)*a->ar[0][i]*calcdet(&minor));

          destroy(&minor);
     }

       return result;
}


int main()

{
    matrix a;
    int order;
    cout<<"\nEnter The Order of The Square Matrix :";
    cin>>order;

    if(!create(&a,order))
       {
           cout<<"\n The Matrix Could Not Be Created !!!! ";
           getch();
          return 0;
       }
       input(&a);
       cout<<"The Matrix Is :\n";
       display(&a); 


    cout<<"\n The Determinant Of The Matrix Is : "<<calcdet(&a);

    getch();
    return 0;
}


 
Posted on 01-10-10 10:34 PM     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

You are one hell of a nerd.

 
Posted on 01-10-10 11:41 PM     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

@salam namaste, 
Please don't hesitate to provide the source from next time....

http://www.dreamincode.net/code/snippet406.htm
 
Posted on 01-11-10 12:13 AM     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

thanks full_maya..

 
Posted on 01-11-10 1:18 AM     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

Sorry guy's, for not providing the source.
Also don't be so offensive....i never mentioned abt writing the program myself (that also in C++...i hate this language)just trying to help raju2005.

 
Posted on 01-11-10 11:48 AM     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

thanks salam namaste... i appreciate it.
actually |A^100| = (|A|)^100  so u can just find the determinant of A and then power it by 100.

Seems like MATLAB is way easier  for matrix and other calculation compared to other prog lang.

 


Please Log in! to be able to reply! If you don't have a login, please register here.

YOU CAN ALSO



IN ORDER TO POST!




Within last 30 days
Recommended Popular Threads Controvertial Threads
TPS for Nepal likely to extend next week
TPS for Venezuela is terminated, only 60 days extension for transition period
I hope all the fake Nepali refugee get deported
Court Hearing Approval.
Has anyone here successfully reinstated to F-1 status after a year-long gap following a drop from F-1?
Trump admin revokes 18 months TPS extension for Venezuelans
Alert: Deported over Traffic Ticket
Homeowner Charged renting to illegal migrants
Proposal: Parents' Immigration Status on US Birth Certificate
Bill Gates getting money from USAID!
Embassy of Nepal might be able to help extend TPS for Nepal
Has anyone entered US recently on TPS travel document or know of anyone who did?
Immigration
MAGA #FAFO
TPS Parents' Newborns to Lose U.S. Citizenship Rights
BEWARE Naturalized Nepalese US citizens... I saw this ..
Grocery store with OPT
Trump was 100 right on DEI ??
If you are mad at Elon and DOGE..
TPS
NOTE: The opinions here represent the opinions of the individual posters, and not of Sajha.com. It is not possible for sajha.com to monitor all the postings, since sajha.com merely seeks to provide a cyber location for discussing ideas and concerns related to Nepal and the Nepalis. Please send an email to admin@sajha.com using a valid email address if you want any posting to be considered for deletion. Your request will be handled on a one to one basis. Sajha.com is a service please don't abuse it. - Thanks.

Sajha.com Privacy Policy

Like us in Facebook!

↑ Back to Top
free counters