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

How do you use logarithms to perform multiplication?

If you take two values A and B, the rules of logs imply:

A * B = log A + log B = log (A+B)

To put it simply you find the of the two values, sum them and then find the value of the resulting log.

and addition is generally easier to perform than multiplication so the result of the logs can be added together. It was used more frequently before the use of pocket calculators and people used tables of logarithms to do multiplication.

How do you show a variance matrix is nonnegative definite?

I assume you mean covariance matrix and I assume that you are familiar with the definition:

C = E[(X-u)(X-u)T]

where X is a random vector and u = E(X) is the mean

The definition of non-negative definite is:

xTCx ≥ 0 for any vector x Є R

So is xTE[(X-u)(X-u)T]x ≥ 0?

Then, from one of the covariance properties:

E[(xT(X-u))((X-u)Tx)] = E[xT([(X-u)(X-u)T]x)] = E[((xTI)x)] = E[xTx]

Finally, since we've already defined x to have only real values, xTx is therefore non-negative definite by definition.

What is the domain of y equals the square root of x?

Assuming we're not dealing with complex numbers, the domain is:

R = {x Є R | x >= 0}, or equivalently, R0+, or [0,∞]

All three of the above terms say the same thing, the domain is all the real numbers greater than or equal to zero.

What is mode in algebra?

i think it is the most often number in a set of numbers

like

6840462336989066

6 6 6 66

8 8

4 4

0 0

2

33

9

the line with the most numbers is the line of sixes so the mode is 6

i may not be right. i am only in 7th grade

What is the raven standard progressive matrices?

Raven Standard Progressive Matrices: These were the original form of the matrices, first published in 1938. The booklet comprises five sets (A to E) of 12 items each (e.g., A1 through A12), with items within a set becoming increasingly difficult, requiring ever greater cognitive capacity to encode and analyze information. All items are presented in black ink on a white background

Matrix chain multiplication program using C?

# include <stdio.h>

# include <conio.h>

# include <stdlib.h>

# define sz 20

# define INF 200000

void print(unsigned long s[][sz], int i, int j)

{

if (i == j)

printf(" A%d ",i);

else

{

printf(" ( ");

print(s, i, s[i][j]);

print(s, s[i][j] + 1, j);

printf(" ) ");

}

}

void printm(unsigned long m[][sz], int n)

{

int i,j;

for(i=1;i<=n;i++)

{

for(j=1;j<=n;j++)

{

printf("%5d",m[i][j]);

}

printf("\n\n");

}

printf("\nThe No. of multiplication required is : %d",m[1][n]);

}

void Matrix_Chain_Order(int p[],int num)

{

unsigned long m[sz][sz] = {0};

unsigned long s[sz][sz] = {0};

unsigned int q = 0;

int i, j, k, l;

int n = num;

for(i = 1; i <= n; i++)

m[i][i] = 0;

for(l = 2; l <= n; l++)

for(i = 1; i <= (n - l + 1); i++)

{

j = i + l - 1;

m[i][j] = INF;

for(k = i; k <= j - 1; k++)

{

q = m[i][k] + m[k+1][j] + p[i-1] * p[k] * p[j];

if(q < m[i][j])

{

m[i][j] = q;

s[i][j] = k;

}

}

}

print(s, i-1, j);

printf("\n\n");

printf("The Minimum No. of Multiplication Required is:\n\n");

printm(m,n);

}

void main()

{

int i,num=0,p[sz]={0};

clrscr();

printf("Enter the number of matrix : ");

scanf("%d",&num);

printf("Enter %d no. of order sequence for %d matrix :\n",num+1,num);

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

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

printf("\n\n");

printf("MULTIPLICATION SEQUENCE IS : ");

printf("\n\n\t");

Matrix_Chain_Order(p,num);

getch();

}

Examples of divergence of a vector field?

I am not sure if this is the answer you are looking for, since the question is listed in both Physics and Abstract Algebra, so I will try to give you some examples from physics.

One of the indicators of a divergence of a vector field is the presence of a source.

For example the electric field can be represented by a vector field, with each vector pointing along the field and has a length proportional to the strength of the electric field at that position. A point source then causes an electric field with a divergence at the location of the point source, with the vectors all pointing away from it (positive charge) or towards it (negative charge).

Another example would be some point mass and the Newtonian gravitational field.

One of Maxwell's equations states that the magnetic field cannot have any divergences meaning that there are no magnetic monopoles.

How do you solve a binary operation?

(11110011)base 2 solve dis binary number...

Answer to this question requires an understanding of binary function, truth table and gate level minimization approach.

[1] A binary function is an expression consisting for binary variables, binary operators and constants (1 or 0). [1] http://fullchipdesign.com/bfttg.htm

Example of binary function minimization approach can be referred from Internet resources.

Prove that a group of order 5 must be cyclic?

There's a theorem to the effect that every group of prime order is cyclic. Since 5 is prime, the assertion in the question follows from the said theorem.

How do you explain that relational algebra operators can be composed and why the ability to compose operators is important?

In computer science, relational algebra is an offshoot of first-order logic and of algebra of sets concerned with operations over finitary relations, usually made more convenient to work with by identifying the components of a tuple by a name (called attribute) rather than by a numeric column index, which is what is called a relation in database terminology.

The main application of relational algebra is providing a theoretical foundation for relational databases, particularly query languages for such databases, chiefly among which is SQLRelational algebra received little attention outside of pure mathematics until the publication of E.F. Codd's relational model of data in 1970. Codd proposed such an algebra as a basis for database query languages. (See section Implementations.)

Both a named and a unnamed perspective are possible for relational algebra, depending on whether the tuples are endowed with component names or not. In the unnamed perspective, a tuple is simply a member of a Cartesian product. In the named perspective, tuples are functions from a finite set U of attributes (of the relation) to a domain of values (assumed distinct from U).[1] The relational algebras obtained from the two perspectives are equivalent.[2] The typical undergraduate textbooks present only the named perspective though,[3][4] and this article follows suit.

Relational algebra is essentially equivalent in expressive power to relational calculus (and thus first-order logic); this result is known as Codd's theorem. One must be careful to avoid a mismatch that may arise between the two languages because negation, applied to a formula of the calculus, constructs a formula that may be true on an infinite set of possible tuples, while the difference operator of relational algebra always returns a finite result. To overcome these difficulties, Codd restricted the operands of relational algebra to finite relations only and also proposed restricted support for negation (NOT) and disjunction (OR). Analogous restrictions are found in many other logic-based computer languages. Codd defined the term relational completeness to refer to a language that is complete with respect to first-order predicate calculus apart from the restrictions he proposed. In practice the restrictions have no adverse effect on the applicability of his relational algebra for database purposes.

Aggregation

Furthermore, computing various functions on a column, like the summing up its elements, is also not possible using the relational algebra introduced insofar. There are five aggregate functions that are included with most relational database systems. These operations are Sum, Count, Average, Maximum and Minimum. In relational algebra the aggregation operation over a schema (A1, A2, ... An) is written as follows:

G1, G2, ..., Gm g f1(A1'), f2(A2'), ..., fk(Ak') (r)

where each Aj', 1 ≤ j ≤ k, is one of the original attributes Ai, 1 ≤ i ≤ n.

The attributes preceding the g are grouping attributes, which function like a "group by" clause in SQL. Then there are an arbitrary number of aggregation functions applied to individual attributes. The operation is applied to an arbitrary relation r. The grouping attributes are optional, and if they are not supplied, the aggregation functions are applied across the entire relation to which the operation is applied.

Let's assume that we have a table named Account with three columns, namely Account_Number, Branch_Name and Balance. We wish to find the maximum balance of each branch. This is accomplished by Branch_NameGMax(Balance)(Account). To find the highest balance of all accounts regardless of branch, we could simply write GMax(Balance)(Account).

Transitive closureAlthough relational algebra seems powerful enough for most practical purposes, there are some simple and natural operators on relations which cannot be expressed by relational algebra. One of them is the transitive closure of a binary relation. Given a domain D, let binary relation R be a subset of D×D. The transitive closure R+ of R is the smallest subset of D×D containing R which satifies the following condition:

There is no relational algebra expression E(R) taking R as a variable argument which produces R+. This can be proved using the fact that, given a relational expression E for which it is claimed that E(R) = R+, where R is a variable, we can always find an instance r of R (and a corresponding domain d) such that E(r) ≠r+.[15]

SQL however officially supports such fixpoint queries since 1999, and it had vendor-specific extensions in this direction well before that.

Do similar matrices have the same eigenvectors?

No, in general they do not. They have the same eigenvalues but not the same eigenvectors.

What is the origin of the word 'Ok?

Originated from the term "Okey dokey" Which is polish for everything is alright.

Where is the index in a radical equation?

the index in a radical equation appears above and left of the root symbol and tells you what kind of root the radicand is.

What are the basic theorems of Boolean algebra?

The Boolean prime ideal theorem:Let B be a Boolean algebra, let I be an ideal and let F be a filter of B, such that and IF are disjoint. Then I is contained in some prime ideal of B that is disjoint from F. The consensus theorem:(X and Y) or ((not X) and Z) or (Y and Z) ≡ (X and Y) or ((not X) and Z)

xy + x'z + yz ≡ xy + x'z

De Morgan's laws:

NOT (P OR Q) ≡ (NOT P) AND (NOT Q)

NOT (P AND Q) ≡ (NOT P) OR (NOT Q)

AKA:

(P+Q)'≡P'Q'

(PQ)'≡P'+Q'

AKA:

¬(P U Q)≡¬P ∩ ¬Q

¬(P ∩ Q)≡¬P U ¬Q

Duality Principle:If a given statement is valid for all partially ordered sets, then its dual statement, obtained by inverting the direction of all order relations and by dualizing all order theoretic definitions involved, is also valid for all partially ordered sets. The laws of classical logicPeirce's law:((PQ)→P)→P

P must be true if there is a proposition Q such that the truth of P follows from the truth of "if Pthen Q". In particular, when Q is taken to be a false formula, the law says that if P must be true whenever it implies the false, then P is true.

Stone's representation theorem for Boolean algebras:

Every Boolean algebra is isomorphic to a field of sets.

Source is linked

How do you prove that a group of order 3 is cyclic?

Any group must have an identity element e. As it has order 3, it must have two other elements, a and b. Now, clearly, ab = e, for if ab = b, then a = e:

abb-1 = bb-1, so ae = e, or a = e.

This contradicts the givens, so ab != b. Similarly, ab != a, leaving only possibility: ab = e. Multiplying by a-1, b = a-1. So our group has three elements: e, a, a-1.

What is a2? It cannot be a, because that would imply a = e, a contradiction of the givens. Nor can it be e, because then a = a-1, and these were shown to be distinct. One possibility remains: a2 = a-1.

That means that a3 = e, and the powers of a are: a0 = e, a, a2 = a-1, a3 = e, a4 = a, etc. Thus, the cyclic group generated by a is given by: = {e, a, a-1}.

QED.

Let g be any element other than the identity. Consider , the subgroup generated by g. By Lagrange's Theorem, the order of is either 1 or 3. Which is it? contains at least two distinct elements (e and a). Therefore it has 3 elements, and so is the whole group. In other words, g generates the group.

QED

In fact here is the proof that any group of order p where p is a prime number is cyclic. It follow precisely from the proof given for order 3.

Let p be any prime number and let the order of a group G be p. We denote this as

|G|=p. We know G has more than one element, so let g be an element of the group and g is not the identity element in G. We also know contains more than one element and ||<|G|, so by Lagrange (as above)

|| divided |G|. Therefore || divides a prime p=|G| which tells us

||=G from which it follows that G is cyclic.

QED

Notation...Order of an element is the number of elements in the subgroup generated by that element. It is also the min n>1 such that gn =1 if such an n exists.

What shape is a pringle?

A pringle is a hyperbolic peraloid, and a tasty crisp!

What is the main sugar used by cells for energy?

Cells have multiple sources of nutrients including fats and sugars, that can be used to create energy. As far as sugar is concerned, glucose is the sugar that is used by cells to produce energy.

When did Galois write about group theory?

Evariste Galois lived from 1811 till 1832. He died in a duel in Mary of 1832. He did not study mathematics at all until 1827 and appears to have concentrated on group theory in 1832.

What is a balboa?

A balboa, as opposed to Balboa, is a dance from the early part of the 20th Century. The dance came from California.

What is the value of a Browning 1964 sweet 16?

It will depend on the specific model and its condition. A quick look at the GunsAmerica.com site shows Browning Sweet 16 shotguns listed for anywhere from $650 to $2500.