answersLogoWhite

0

Abstract Algebra

Have you ever wondered what would happen if you redefined some of the basic rules of algebra so that concepts you took for granted, like AB = BA, no longer apply? Abstract algebra does just that through the study of the properties that define algebraic structures. Post all questions about fields, rings, group theory, vector spaces, and the axioms that define them into this category.

1,849 Questions

What is a estimate of 348?

348 is a pretty good estimate, I would say.

What is the value of a p38?

Need a detailed description of all markings, finish, etc. Range could be from a few hundred to multiple thousands.

What is the value of an 1856 dime?

It depends on the coin's condition and mint mark. See http://www.numismedia.com/fmv/prices/setdim/pricesgd.shtml , for example.

What do 3j plus 15 equals?

Without information about j, the only possible answer is 3j + 15

How do you Write a C program for matrix?

/* multiplication of a 3*3 matrix*/

#include<stdio.h>

main()

{

int a[3][3],b[3][3],c[3][3];

int i,j,k;

printf("enter the elements in A matrix:\n");

for(i=0;i<=2;i++)

{

for(j=0;j<=2;j++)

{

scanf("%d",&a[i][j]);

}

}

printf("enter b matrix:\n");

for(i=0;i<=2;i++)

{

for(j=0;j<=2;j++)

{

scanf("%d",&b[i][j]);

}

}

for(i=0;i<=2;i++)

{

printf("\n");

for(j=0;j<=2;j++)

{

c[i][j]=0;

for(k=0;k<=2;k++)

{

c[i][j] = c[i][j]+a[i][k] * b[k][j];

}

}

}

printf("multiplication matrix is:\n");

for(i=0;i<=2;i++)

{

for(j=0;j<=2;j++)

{

printf("%d\t",c[i][j]);

}

printf("\n");

}

}

Matrix addition of a 33 matrix?

Fix 33 table changes : macierz1[][],macierz2[][],... and its size (write size to brackets)

Fix a matrix to result : wynik[][], and int i,j.

for(i=0;i<size_of_your_matrix;i++)

for (i=0;i<size_of_your_matrix;i++)

wynik[i][j]=macierz1[i][j]+...+macierz33[i][j];

Or instead of 33 changes: macierz[33][size][size]

for(k=0;k<33;k++)

for(i=0;i<size_of_your_matrix;i++)

for (i=0;i<size_of_your_matrix;i++)

wynik[i][j]=wynik[k][i][j]+macierz[k][i][j];

(dont forget about initializing wynik as 0 in 2nd case)

What is the difference between a conjecture and an axiom?

First off, I'll explain what axioms are since they are of fundamental importance to abstract algebra and math in general. In mathematical logic, an axiom is an underivable, unprovable statement that is accepted to be truth. Axioms are, therefore, statements which form the mathematical basis from which all other theorems can be derived. The most well-known modern examples of mathematical axioms are those of the axiomatic set theory known as ZFC.

The Zermelo-Fraenkel set theory with the axiom of choice added to it, abbreviated ZFC, is the axiomatic set theory which provides our basis for math. There are nine axioms in the theory:

1) Two sets are equal if and only if they have the exact same members.

2) A set can't be an element of itself.

3) If there is a property that is characteristic of the elements of a set, a subset of that set exists containing the elements that satisfy the property.

4) A set exists containing exactly all of the members of two given sets.

5) A set exists whose elements are the members of the members (the union) of a given set.

6) The image of any function on a set is also a set.

7) There is a set that contains all of the natural numbers.

8) Every set has a power set; i.e. the set of all possible subsets of the original set.

9) Every set can be well-ordered such that every subset of the set has a "least" element under the ordering.

All nit-picking aside, these nine axioms are mathematically unprovable and therefore must be assumed true for mathematics to work.

A conjecture, as opposed to an axiom, is an unproved (not unprovable) statement that is also generally accepted to be true. The subtle difference between the two terms is basically that an axiom has been proven to be unprovable, whereas a conjecture hasn't.

See the related link for more information about ZFC.

Is sally hansen continuous growth formula ingredients better than nutra nail 5 to 7 day growth formula ingredients?

Your nails will typically show signs of growth within 5 days, though I have heard nutra nail 5 to 7 day nail growth formula really helps I'm sure both work.

Which is greater a rate of change of 60 miles per hour or 1 mile per hour?

A rate of change of 60 miles per hour.

Think of it in terms of a car. The car is going to go a father distance if it is going 60 miles per hour as opposed to 1 mile per hour.

What is 210 51 81 3.01 6.001 in standard notation?

The word "is" in the question suggests there is one number. However, I can see five!

What is the value of an 1896 quarter?

You'll need to look on the back of the coin under the eagle's tail to see if there is a small letter. That's the mint mark and tells where the coin was made. Prices as of 08/2008:

No letter (Phila.) : $5 if worn, $20 with moderate wear, $40 with slight wear

O (New Orleans) : $20 / $100 / $275

S (San Francisco) : $900 / $1800 / $2700

If your coin has an O or S you should have it checked by an expert to make sure it's genuine.

Please see the link below for a more detailed range of prices by condition and mint mark.

What is index in group theory?

Say we have a group G, and some subgroup H. The number of cosets of H in G is called the index of H in G. This is written [G:H].

If G and H are finite, [G:H] is just |G|/|H|.

What if they are infinite? Here is an example. Let G be the integers under addition. Let H be the even integers under addition, a subgroup. The cosets of H in G are H and H+1. H+1 is the set of all even integers + 1, so the set of all odd integers. Here we have partitioned the integers into two cosets, even and odd integers. So [G:H] is 2.

What are Complex vocal tics?

Complex vocal tics involve meaningful words, phrases or sentences

What is the value of a 1966 dime?

It is worth 300 dollars but i saw one on eBay for 445 so it ranges between 300 and 400 dollars.

REPLY/EDIT:

I don't see this being anywhere near "correct" ... a 1965 dime with silver content is valuable however 1966 dimes ... WELL ... are "a dime a dozen" ... Search Ebay and you'll find nobody bidding .99 cents for them! I hope this helps.

How do you write a c program to determine if a matrix is symmetric or not?

A matrix is symmetric when it is a perfect square and the transpose of the matrix is equal to the original matrix. The implementation is reasonably straightforward and can be done without actually creating the transposed matrix. We simply imagine a dividing line through the main diagonal (top-left to bottom right) and compare the corresponding elements on each side of that diagonal.

bool is_symmetric (int* a, int rows, int cols) {

if (rows!=cols) return false;

for (int row=0, row

for (int col=row+1; col

if (a[row][col] != a[col][row]) return false;

return true;

}

This works because for every element a[row][col] in a square matrix, the corresponding element on the other side of the main diagonal must be a[col][row]. In other words, we simply transpose the subscripts (hence it is called the transpose).

Consider a 4x4 matrix of hexadecimal values:

0 1 2 3

4 5 6 7

8 9 A B

C D E F

The main diagonal line is identified as elements {0, 5, A, F}. Element {7} lies above this line and it corresponds with element {D} below the line. Element {7} is identified with the subscript [1][3] while element {D} is identified with the subscript [3][1].

Note that the inner loop which traverses the columns always starts at col=row+1. This ensures that we always start with the first element after the diagonal element in the current row, and traverse through the remaining elements of that row. In other words, elements in [row][col] are always in the upper-right of the matrix, above the main diagonal. Meanwhile, the corresponding transpose, element [col][row], lies in the lower-left of the matrix, below the main diagonal. There is no need to test the entire array, traversing every column of every row, because there's no point in testing elements on the diagonal itself (we'd be comparing each element to itself and its given that an element is always equal to itself), and there's no point in comparing the lower-left elements to the upper-right elements when we've already performed the reverse comparison. After all, if X==Y then it follows that Y==X because equality is a transitive operation (the result is the same regardless of which side of the operator we place the operands).

Note that in order to replace a square matrix with its transpose, we simply swap the corresponding elements unless the matrix is symmetrical (because, by definition, a symmetrical matrix is equal to its own transpose):

void transpose (int* a, int rows, int cols) {

if (rows!=cols is_symmetric (a, rows, cols)) return;

for (int row=0, row

for (int col=row+1; col

swap (&a[row][col], &a[col][row]);

}

What is the value of a Franchi 500?

A Franchi 500 is worth about $325 in excellent condition, all the way down to about $100 in poor condition. This info is from the 2004 Standard Catalog of Firearms.