-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathp2.html
More file actions
46 lines (31 loc) · 2.83 KB
/
p2.html
File metadata and controls
46 lines (31 loc) · 2.83 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
<html>
<head>
<title> HTML SYNTAX</title>
<body>
<h1> RINGS,INTEGRAL DOMAINS,FIELDS</h1>
<h1>1.0 INTRODUCTION :</h1>
<p>In the previous semester,we studied an algebraic system known as a group,equipped with one binary operation.
In this chapter we shall study an important type of algebraic structure equipped with two binary operation known as a ring.
The motivation arises from the fact that integers follow a definite pattern with respect to the ordinary addition and multiplication.
We shall give an axiomatic definition of a ring and study some of its properties </P>
<h1> 1.1 RINGS</h1>
<h3> Definition :</h3> <p> An algebraic structure (R,+,*) consisting of a non-empty set R and two binary operations called addition and multiplication denoted by '+' and '*' is called following postulated are satisfied :</p>
<h3>I </h3> <p> Addition is an abelian group with respect to addition. i.e (R,+) is an abelian group</p>
<p> i)Addition is associative i.e a+(b+c)=(a+b)+c, for all a,b,c belongs to R.</p>
<p> ii)There exists an element denoted by o in R such that a+o=a=o+a for all a belongs to R. The symbol 'o' denote the identity.</p>
<p> iii)For each a belongs to R, there exists -a belongs to R, such that a+(-a)=o=(=a)+a the symbol -a is the inverse of a.</p>
<p> iv)a+b=b+a, for all a,b belongs to R.</p>
<h3> II</h3><p> R is a semigroup for '.', i.e a.(b.c)=(a.b).c for all a,b,c belongs to R (multiplication is associative)</p>
<h3> III</h3> <p> multiplication is distributive with respect to addition i.e for all a,b belongs to R </p>
<p> a.(b+c)=a.b+a.c Left distributive law</p>
<p> (b+c).a=b.a+c.a Right distributive law</p>
<h3> Note </h3> <p> 1. By saying that '+' is a binary operation in R, we mean for all a,b belongs to R, a+b belongs to R. i.e R is closed w.r.t addition. Similarly R is closed w,r,t multiplication for all a,b belongs to R, a.b belongs to R.</p>
<p> 2. We shall use the symbol (R,+,.) to denote a ring structure. </p>
<p> 3. The equation a+x=b has a unique solution b+(-a) in R and we simply write b-a and call the same the difference of b and a </p>
<p> 4. Both the cancellation laws will hold good for addition in R. i.e for all a.b.c in R a+b = a+c == b=c amd b+a = c+a == b=c </p>
<h2> Some special types of Rings</h2>
<h3> 1) commutative Ring :</h3>
<p> A ring (R,+,.) is called a commutative ring, if the binary composition multiplication is commutative, i.e if we have a.b = b.a for all a.b belongs to R.</p>
</head>
</body>
</html>