-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavaProject.java
More file actions
491 lines (438 loc) · 15.5 KB
/
Copy pathJavaProject.java
File metadata and controls
491 lines (438 loc) · 15.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
import java.util.Scanner;
public class MatrixCalculator {
public static void main (String[] args) {
String control = "Yes";
Scanner input = new Scanner(System.in);
while(control.equals("Yes")) {
System.out.println("Please enter the length of 2 matrixes: ");
int n = input.nextInt();
int Matrix1 [][] = new int[n][n];
int Matrix2 [][] = new int[n][n];
Operations c = new Operations();
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
System.out.printf("Enter a number to (%d,%d). first matrix element : ",i,j);
Matrix1[i][j]=input.nextInt();
}
}
System.out.println("FIRST MATRIX:");
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
System.out.printf("%3d",Matrix1[i][j]);
}
System.out.println();
}
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
System.out.printf("Enter a number to (%d,%d). second matrix element : ",i,j);
Matrix2[i][j]=input.nextInt();
}
}
System.out.println("SECOND MATRIX : ");
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
System.out.printf("%3d",Matrix2[i][j]);
}
System.out.println();
}
System.out.println("What do you want to do with this matrix or matrixes? :");
System.out.println("Sum => + / Subtraction => - / Multiplication => * / Diagonal and Trace => d / Symmetric or Asymmetric => s / Orthogonal matrix or not => o / Periodic matrix or not => p / Idempotent matrix or not => i / Nilpotent matrix or not => n / Involutive matrix or not => v ");
char operation = input.next().charAt(0);
switch(operation) {
case '+': c.sum(Matrix1, Matrix2); break;
case '-': System.out.println(c.sub(Matrix1, Matrix2 )); break;
case '*': System.out.println(c.mult(Matrix1, Matrix2)); break;
case 'd': System.out.println("Please enter which matrix you want to use?(1/2): ");
int choice1 = input.nextInt();
if(choice1 == 1) {
c.diagonalANDtrace(Matrix1);
}
else if(choice1 == 2) {
c.diagonalANDtrace(Matrix2);
} break;
case 'i': System.out.println("Please enter which matrix you want to use?(1/2): ");
int choice2 = input.nextInt();
if(choice2 == 1) {
System.out.println(c.isIdempotent(Matrix1));
}
else if(choice2 == 2) {
System.out.println(c.isIdempotent(Matrix2));
} break;
case 'n': System.out.println("Please enter which matrix you want to use?(1/2): ");
int choice3 = input.nextInt();
if(choice3 == 1) {
System.out.println(c.isNilpotent(Matrix2));
}
else if(choice3 == 2) {
System.out.println(c.isNilpotent(Matrix2));
} break;
case 'v': System.out.println("Please enter which matrix you want to use?(1/2): ");
int choice4 = input.nextInt();
if(choice4 == 1) {
c.isInvolitive(Matrix1);;
}
else if(choice4 == 2) {
c.isInvolitive(Matrix2);
} break;
case 'p': System.out.println("Please enter which matrix you want to use?(1/2): ");
int choice5 = input.nextInt();
if(choice5 == 1) {
c.isPeriodic(Matrix1);;
}
else if(choice5 == 2) {
c.isPeriodic(Matrix2);
} break;
case 's': System.out.println("Please enter which matrix you want to use?(1/2): ");
int choice6 = input.nextInt();
if(choice6 == 1) {
System.out.println(c.symmetricORasymmetric(Matrix1));
}
else if(choice6 == 2) {
System.out.println(c.symmetricORasymmetric(Matrix2));
} break;
case 'o': System.out.println("Please enter which matrix you want to use?(1/2): ");
int choice7 = input.nextInt();
if(choice7 == 1) {
System.out.println(c.orthogonalORnot(Matrix1));
}
else if(choice7 == 2) {
System.out.println(c.orthogonalORnot(Matrix2));
} break;
default: System.out.println("Invalid operation!");
}
System.out.println("Do you want to continue(Yes/No): ");
control = input.next();
}
}
}
class Operations {
void sum(int[][] Matrix1, int[][] Matrix2) {
int length = Matrix1.length;
int sum[][] = new int[length][length];
for(int i=0; i<length; i++) {
for(int j=0; j<length; j++) {
sum[i][j] = Matrix1[i][j] + Matrix2[i][j];
}
}
for(int i=0; i<length; i++) {
for(int j=0; j<length; j++) {
System.out.printf("%4d",sum[i][j]);
}
System.out.println();
}
}
int sub(int[][] Matrix1, int[][] Matrix2) {
int length = Matrix1.length;
int sub[][] = new int[length][length];
for(int i=0; i<length; i++) {
for(int j=0; j<length; j++) {
sub[i][j] = Matrix1[i][j] - Matrix2[i][j];
}
}
for(int i=0; i<length; i++) {
for(int j=0; j<length; j++) {
System.out.printf("%4d",sub[i][j]);
}
System.out.println();
}
return 0;
}
static int mult(int[][] Matrix1, int[][] Matrix2) {
int length = Matrix1.length;
int mult[][] = new int[length][length];
for (int i=0; i <length; i++) {
for (int j=0; j <length; j++) {
for (int k=0; k<length; k++) {
mult[i][j] += Matrix1[i][k] * Matrix2[k][j];
}
}
}
for (int i=0; i <length; i++) {
for (int j=0; j <length; j++) {
System.out.printf("%8d",mult[i][j]);
}
System.out.println();
}
return 0;
}
void diagonalANDtrace(int[][] Matrix) {
int length = Matrix.length;
int diag[]=new int[length];
int trace = 0;
for(int i=0;i<length;i++){
for(int j=0;j<length;j++){
if(i==j){
diag[i]=Matrix[i][j];
trace+=Matrix[i][j];
}
}
}
System.out.println("DIAGONAL OF MATRIX :");
for(int i=0;i<length;i++){
System.out.printf("%3d",diag[i]);
}
System.out.println();
System.out.println("TRACE OF MATRIX = "+trace);
}
int isIdempotent(int[][] Matrix) {
int length = Matrix.length;
int idempotent_matrix[][]=new int[length][length];
System.out.println("IDEMPOTENT MATRIX : ");
for(int i=0;i<length;i++){
for(int j=0;j<length;j++){
int sum=0;
for(int k=0;k<length;k++){
sum+=Matrix[i][k]*Matrix[k][j];
}
idempotent_matrix[i][j]= sum;
}
}
for(int i=0;i<length;i++){
for(int j=0;j<length;j++){
System.out.printf("%3d",idempotent_matrix[i][j]);
}
System.out.println();
}
boolean isidempotent=true;
for(int i=0;i<length;i++){
for(int j=0;j<length;j++){
if(idempotent_matrix[i][j]!=Matrix[i][j]){
isidempotent=false;
break;
}
}
if(!(isidempotent)){
break;
}
}
if(isidempotent){
System.out.println("Your matrix is an idempotent matrix");
}else{
System.out.println("Your matrix is not an idempotent matrix");
}
return 0;
}
static int isNilpotent(int[][] Matrix) {
System.out.println("enter the power of matrix :");
Scanner get = new Scanner(System.in);
int length = Matrix.length;
int power=get.nextInt();
int nilpotent_matrix[][]=new int[length][length];
System.out.println("NILPOTENT MATRIX : ");
for(int p=1;p<=power;p++){
for(int i=0;i<length;i++){
for(int j=0;j<length;j++){
int sum=0;
for(int k=0;k<length;k++){
sum+=Matrix[i][k]*Matrix[k][j];
}
nilpotent_matrix[i][j]+= sum;
}
}
}
for(int i=0;i<length;i++){
for(int j=0;j<length;j++){
System.out.printf("%3d",nilpotent_matrix[i][j]);
}
System.out.println();
}
boolean isnilpotent=true;
for(int i=0;i<length;i++){
for(int j=0;j<length;j++){
if(nilpotent_matrix[i][j]!=0){
isnilpotent=false;
break;
}
}
if(!(isnilpotent)){
break;
}
}
if(isnilpotent){
System.out.println("Your matrix is a nilpotent matrix");
}else{
System.out.println("Your matrix is not a nilpotent matrix");
}
return 0;
}
void isInvolitive(int[][] Matrix) {
int length = Matrix.length;
int involutive_matrix[][]=new int[length][length];
System.out.println("INVOLUTIVE MATRIX : ");
for(int i=0;i<length;i++){
for(int j=0;j<length;j++){
int sum=0;
for(int k=0;k<length;k++){
sum+=Matrix[i][k]*Matrix[k][j];
}
involutive_matrix[i][j]= sum;
}
}
for(int i=0;i<length;i++){
for(int j=0;j<length;j++){
System.out.printf("%3d",involutive_matrix[i][j]);
}
System.out.println();
}
int unitmatrix[][]=new int[100][100];
for(int i=0;i<length;i++){
for(int j=0;j<length;j++){
if(i==j){
unitmatrix[i][j]=1;
}
}
}
boolean isinvolutive=true;
for(int i=0;i<length;i++){
for(int j=0;j<length;j++){
if(involutive_matrix[i][j]!=unitmatrix[i][j]){
isinvolutive=false;
break;
}
}
if(!(isinvolutive)){
break;
}
}
if(isinvolutive){
System.out.println("Your matrix is an involutive matrix");
}else{
System.out.println("Your matrix is not an involutive matrix");
}
}
int symmetricORasymmetric(int[][] Matrix) {
int issymmetric=1;
int isasymmetric=1;
int length = Matrix.length;
System.out.println("TRANSPOSE OF MATRIX : ");
int transposematrix[][]=new int[length][length];
for(int i = 0; i < length; i++) {
for(int j = 0; j < length; j++) {
transposematrix[j][i]=Matrix[i][j];
System.out.printf("%3d", Matrix[j][i]);
}
System.out.println();
}
for(int i = 0; i < length; i++) {
for(int j = 0; j < length; j++) {
if(transposematrix[i][j]!=Matrix[i][j]){
issymmetric=0;
break;
}
}
if(issymmetric==0){
break;
}
}
for(int i = 0; i < length; i++) {
for(int j = 0; j < length; j++) {
if((transposematrix[i][j])!=(-Matrix[i][j])){
isasymmetric=0;
break;
}
}
if(isasymmetric==0){
break;
}
}
if(isasymmetric==1){
System.out.println("Your matrix is an asymmetric matrix .");
}else if(issymmetric==1){
System.out.println("Your matrix is a symmetric matrix .");
}
else{
System.out.println("Your matrix is neither symmetric nor asymmetric matrix .");
}
return 0;
}
static int orthogonalORnot(int[][] Matrix) {
int length = Matrix.length;
int tempMatrix[][] = new int[length][length];
int unitMatrix[][] = new int[length][length];
System.out.println("TRANSPOSE OF MATRIX: ");
int transposeMatrix[][] = new int[length][length];
for (int i = 0; i < length; i++) {
for (int j = 0; j < length; j++) {
transposeMatrix[j][i] = Matrix[i][j];
System.out.printf("%3d", Matrix[j][i]);
}
System.out.println();
}
for (int i = 0; i < length; i++) {
for (int j = 0; j < length; j++) {
tempMatrix[i][j] = Matrix[i][j] * transposeMatrix[i][j];
if (i == j) {
unitMatrix[i][j] = tempMatrix[i][j];
}
}
}
System.out.println("Transpose of Matrix * Matrix =");
for (int i = 0; i < length; i++) {
for (int j = 0; j < length; j++) {
System.out.printf("%3d", unitMatrix[i][j]);
}
System.out.println();
}
boolean isUnitMatrix = true;
for (int i = 0; i < length; i++) {
for (int j = 0; j < length; j++) {
if ((i == j && unitMatrix[i][j] != 1) || (i != j && unitMatrix[i][j] != 0)) {
isUnitMatrix = false;
break;
}
}
if (!isUnitMatrix) {
break;
}
}
if (isUnitMatrix) {
System.out.println("Your matrix is an orthogonal matrix.");
}
else {
System.out.println("Your matrix is not an orthogonal matrix.");
}
return 0;
}
void isPeriodic(int[][] Matrix) {
System.out.println("enter the period of matrix :");
Scanner get = new Scanner(System.in);
int period=get.nextInt();
int length = Matrix.length;
int periodic_matrix[][]=new int[length][length];
System.out.println("PERIODIC MATRIX : ");
for(int p=1;p<=period+1;p++){
for(int i=0;i<length;i++){
for(int j=0;j<length;j++){
int sum=0;
for(int k=0;k<length;k++){
sum+=Matrix[i][k]*Matrix[k][j];
}
periodic_matrix[i][j]+= sum;
}
}
}
for(int i=0;i<length;i++){
for(int j=0;j<length;j++){
System.out.printf("%3d",periodic_matrix[i][j]);
}
System.out.println();
}
boolean isperiodic=true;
for(int i=0;i<length;i++){
for(int j=0;j<length;j++){
if(periodic_matrix[i][j]!=Matrix[i][j]){
isperiodic=false;
break;
}
}
if(!(isperiodic)){
break;
}
}
if(isperiodic){
System.out.println("Your matrix is an periodic matrix");
}else{
System.out.println("Your matrix is not an periodic matrix");
}
}
}