Define the determinant of a matrix

Assignment Help JAVA Programming
Reference no: EM13809719

Define the determinant of a matrix a (written det(a)) recursively as follows:

1. if a is a 1 x 1 matrix, then det(a) = x

2. if a is of an order greater than 1, compute the determinant of a as follows:

a. Choose any row or column. For each element a[I, j] in this row or column, form the product:

power (-1, I + j) * a[I, j] * det(minor(a[I, j])

where I and j are the row and column positions of the element chosen, a[I, i] is the element chosen, det(minor(a[I, j]) is the determinant of the minor of a[I, j] and power (m, n) is the value of m raised to the nth power.

b. det(a) = sum of all these products.

Det(a) = Σ power(-1, I + j) * a[I, j] * det(minor(a[I, j]), for any j

or

Det(a) = Σ power(-1, I + j) * a[I, j] * det(minor(a[I, j]), for any i

Write a Java program that reads a, print a in matrix form, and prints the value of det(a), where det is a method that computes the determinant of a matrix.

As per the problem, write a program that uses a recursive algorithm to compute the determinant of a matrix. It should read a matrix, print it out, compute, and print the determinant. Your program should be able to evaluate multiple matrices on a single execution. Your program should handle matrices up to and including those of order 6. You are required to use an array for this problem. Your solution must be recursive. 

Justify your data structures. Consider an iterative implementation. Would it be more efficient? What data structures would you choose in that case? 

As a minimum, use the following eight matrices to test your program, formatted as shown to the right. 

[5] 


2 3 

5 9 


3 -2 4 

-1 5 2 

-3 6 4 


2 4 5 6 

0 3 6 9 

0 0 9 8 

0 0 0 5 


2 4 5 6 

0 0 0 0 

0 0 9 8 

0 0 0 5 


2 0 0 0 

0 3 0 0 

0 0 9 0 

0 0 0 5 


2 4 0 6 

1 3 0 0

4 0 0 8 

2 5 0 5 


6 4 6 4 6 4 

1 2 3 4 5 6 

6 5 4 3 2 1 

3 2 3 2 3 2 

4 6 4 6 4 6 

1 1 1 1 1 1

Reference no: EM13809719

Questions Cloud

The market system promotes progress by : By specializing in the production of one good, a company is able to benefit from economies of scale which increases its revenue. Which of the following is an attribute of specialization
Write an essay about feminist critics of video games threats : Write an essay about "Feminist Critics of Video Games Facing Threats in ‘GamerGate' Campaign" by Nick Wingfield
Research the topic of csr and ecological environment : Research the topic of CSR and Ecological Environment and Analysis of the article
Practice assessing an industry : You plan to hold a weekly breakfast meeting with your team of strategic planners to practice assessing an industry. For the upcoming week's breakfast meeting, you told your team that they should be prepared to discuss the business environment or i..
Define the determinant of a matrix : Define the determinant of a matrix a (written det(a)) recursively as follows: if a is a 1 x 1 matrix, then det(a) = x
Companies benefit from supply chain : How did these 3 companies benefit from supply chain? What can your company learn from these examples? Include an introduction and a conclusion in addition to the 3 paragraphs.
Explain a research project : Explain a research project
Write comparing essay about the great gatsby book and movie : Write a comparing essay about The Great Gatsby book- by F. Scott Fitzgerald and The Great Gatsby movie filmed in 2000 by A and E Television Networks.
How current it department will evolved into cio organization : Using the case provided, write a memorandum explaining how the current IT Department will be evolved into a CIO organization. Cover: leadership style, internal IT strategies, the current and new organization structures, an explanation of how the n..

Reviews

Write a Review

JAVA Programming Questions & Answers

  Write a java program in a netbeans project

Write a Java program in a NetBeans project

  How to setup a program to respond to events

Discussing how to setup a program to respond to events from any one of these sources - How do you create the necessary listener class? How do you associate the listener object with the event source?

  Design a class that you can use to track the books

Define a class PileOfBooks that implements the interface described in question one. use a resizeable array oin your implementation. then write unit test woth adequate test cases for your implementation of class PiloOfBooks.

  Create a program in java that displays hello world

Create a program in Java that displays "Hello world!" Take a screen shot that shows the program's successful compilation and execution

  Write a program that reads in a text file and then computes

Write a program that reads in a text file and then computes and prints a table of letter frequencies. For example, if the file is the text of "A Tale of Two Cities", found in the file at data/tales.txt , the program will print

  Find what kind of output best shows off the operation

Find what kind of output best shows off the operation of these classes, and write a program that produces that kind of output.

  Define two different physical representations for strings

Define an ADT for character strings. Your ADT should consist of typical functions that can be performed on strings, with each function defined in terms of its input and output. Then define two different physical representations for strings.

  Implementing a relatively simple text-compression scheme

You will be implementing a relatively simple text-compression scheme - It should run from the command line.

  Write a complete java program assuming that the variables gp

Write a complete java program Assuming that the variables gpa, deanList and studentName have been declared, you should read in the studentName and gpa from keyboard. Write an if statement that adds 1 to deansList and prints studentName to the standar..

  Qr codes are a popular way

QR codes are a popular way to encode data for easy reading by computerized cameras. True QR codes contain error correction, format specifiers, version information, and a size variable layout that makes them harder to decode and process

  Method that returns the user entered number

write a java program that continues to prompt the user to input a real number. if the number is positive, the program calculates and outputs the area of circle using the inputted number as a radius. If the number is negative, the program exits.

  Implement a shopping cart class with user interface

project will be to implement a shopping cart class with user interface (UI) that contains main() in Net Beans. The UI class will be used to perform user input/output and to invoke the appropriate methods of shopping cart class. When your program star..

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd