Keywords: Algorithm, Sieve, Prime Number Mathematics Subject Classification (MSC) 2010 : 11Y11, 11Y16, 65Y04, 65Y20, 68Q25

Size: px
Start display at page:

Download "Keywords: Algorithm, Sieve, Prime Number Mathematics Subject Classification (MSC) 2010 : 11Y11, 11Y16, 65Y04, 65Y20, 68Q25"

Transcription

1 American International Journal of Research in Formal, Applied & Natural Sciences Available online at ISSN (Print): , ISSN (Online): , ISSN (CD-ROM): AIJRFANS is a refereed, indexed, peer-reviewed, multidisciplinary and open access journal published by International Association of Scientific Innovation and Research (IASIR), USA (An Association Unifying the Sciences, Engineering, and Applied Research) Algorithms of Three Prime Generating Sieves Improvised by Skipping Even Divisors (Except 2) Neeraj Anant Pande Department of Mathematics & Statistics, Yeshwant Mahavidyalaya (College), Nanded , INDIA Abstract: Three elementary classical prime generating sieves are well known. In this paper, a property of positive integers is employed that if any of them is not divisible by 2, then it is also not divisible by any even number and hence there remains no necessity to examine any even divisors during primality tests. This significantly improves all the three classical sieves and gives a new generation of three better sieves. The corresponding algorithms when implemented on electronic computer show very noteworthy difference given by this simple property. Keywords: Algorithm, Sieve, Prime Number Mathematics Subject Classification (MSC) 2010 : 11Y11, 11Y16, 65Y04, 65Y20, 68Q25 I. Introduction Prime numbers still stand as a mystery for mathematicians [1]. There are many conjectures about prime numbers which are yet unresolved. Definition (Prime Number or Prime) : An integer p > 1 is prime number if, and only if, it only divisors are ±1 and ±p. The lack of a simple precise formula for prime numbers has made all the work about primes quite analytic. Huge databases of primes are generated and analysed in detail. So regarding the primes, the very basic requirement many times happens to be availability of these databases. For generation of such databases, methods called sieves are employed which are implemented on electronic computers in programming languages based on algorithms [2]. II. Sieve 1 improvised to Sieve Using mere fundamental property that positive divisors of a positive integer k cannot range beyond 1 to k itself, of which if we omit 1 and k,, test range for the non-trivial divisor remains 2 to k 1, following Sieve 1 was discussed by author in [3] : For all values of k from 2 to n For values of integer d from 2 to k 1 If checks do not stop for any value of d till k 1, k is prime As it happens to be, this sieve was admitted to be very inefficient at the very original source of its appearance. In fact, for the same reason it was followed by its refinements as Sieve 2 and Sieve 3 in the same discussion, which we will revisit in the coming sections. There is another scope for increasing efficiency of this sieve by appealing to a property of divisibility of positive integers that if 2 doesn t divide k, then 2j doesn t divide k, i.e., if a number is not even then it doesn t have any even divisors. This leads to following Sieve is prime For all values of k from 3 to n AIJRFANS ; 2013, AIJRFANS All Rights Reserved Page 22

2 For values of integer d from 2 to k 1 and only odd values after 2 If checks do not stop for any value of d till k 1, k is prime Runtimes requirements both sieves are as follows : TABLE 1. RUNTIMES FOR SIEVE 1 AND SIEVE Time Taken in Seconds Sieve 1 Sieve As was the case with Sieve 1, for Sieve also the time grows rapidly for higher ranges relative to lower ranges, but the comparative time requirement is quite less as compared to original Sieve 1. It is almost reduced to half as the number of checks of the divisors has reduced almost to half after omitting all even values beyond 2. [3] has done time requirement calculation. If, in addition, here step requirements are measured, the following table gives the quantum of the improvement over Sieve 1 of [3]. TABLE 2. STEPS TAKEN BY ALGORITHMS OF SIEVE 1 AND SIEVE Steps Taken Sieve 1 Sieve Steps Difference One sees clearly that the number of required steps in the Sieve has decreased to about half as compared to those in Sieve 1. III. Sieve 2 improvised to Sieve Along the same lines of improvement of Sieve 1 to Sieve 2.1.1, there is equal scope of improvement of Sieve 2 in [3] to a newer version. Sieve 2 of [3] adopted the following approach : For all values of k from 2 to n For values of integer d from 2 to k/2 If checks do not stop for any value of d till k/2, k is prime This was a clear enhancement of Sieve 1 s method as number of divisors was reduced to half owing to the property of positive integers that none of their divisors can exceed half of themselves. To this better made form, if new property of skipping testing of even divisors after 2 is applied we get a further refined version, what we call Sieve : 2 is prime For all values of k from 3 to n For values of integer d from 2 to k/2 and only odd values after 2 If checks do not stop for any value of d till k/2, k is prime A table of runtime requirements of Sieve 2 and Sieve is presented for comparative analysis : AIJRFANS ; 2013, AIJRFANS All Rights Reserved Page 23

3 TABLE 3. RUNTIMES FOR SIEVE 2 AND SIEVE Time Taken in Seconds Sieve 2 Sieve Time efficiency of Sieve over Sieve 2 is remarkable. It shows that Sieve is, in addition, better than both Sieve 1 and Now if number of checks required for primality tests are to be compared in terms of steps taken by both sieve 2 and 2.1.2, we see a similar difference between them as between those of Sieve 1 and Sieve TABLE 4. STEPS TAKEN BY ALGORITHMS OF SIEVE 2 AND SIEVE Steps Taken Sieve 2 Sieve Steps Difference Here too the steps are about halved. The reason is very same that during all primality tests, half of the divisor values which are even except 2 are omitted during checks and that leaves half checks redundant, directly avoiding their execution. The data is drawn for all numbers up to 10 5 and will be used to plot these values. IV. Sieve 3 improvised to Sieve The best sieve amongst all presented in [3] is Sieve 3. It considers precise range for divisors, namely, from 2 to square root of a number for search of possible divisors : For all values of k from 2 to n For values of integer d from 2 to k If checks do not stop for any value of d till k, k is prime Finally, introduction of similar refinement of neglecting even numbers larger than 2 for test as divisors for this sieve also leads to the best version of the sieve amongst all being presented in this paper, enumerated as Sieve : 2 is prime For all values of k from 3 to n For values of integer d from 2 to k and only odd values after 2 If checks do not stop for any value of d till k, k is prime It is found that the process of refinement continues. The chart of time requirements shows similar trend of less time consumption for this version. TABLE 5. RUNTIMES FOR SIEVE 3 AND SIEVE Time Taken in Seconds Sieve 3 Sieve AIJRFANS ; 2013, AIJRFANS All Rights Reserved Page 24

4 The time for first range of numbers 1-10 is so small and less than 1 nanosecond that it is seen to be just 0 in the order of magnitude of nanosecond. It is actually not zero but only very small. Now what follows is the table describing the number of steps taken by Sieve 3 and its improved form Sieve TABLE 6. STEPS TAKEN BY ALGORITHMS OF SIEVE 3 AND SIEVE All numbers in the Steps Taken The Number of Primes Found Range Sieve 3 Sieve Steps Difference Same trend continues in this case also as the number of steps becomes reduced to nearly half. V. Comparative Analysis Of the 3 previous algorithms, each one is refined in a similar manner to yield 3 more. Each time newly obtained algorithm has proven to be better than all the previous. Originally presented algorithms for Sieves 1, 2 and 3 were analysed for performance comparison in [3]. Here an exhaustive comparison for newly presented versions becomes due. The next table shows all related generated data about time requirements of newly introduced sieves. TABLE 7. RUNTIMES IN SECONDS FOR THE THREE REFINED SIEVES Numbers Range Number of Primes Sieve Sieve Sieve AIJRFANS ; 2013, AIJRFANS All Rights Reserved Page 25

5 Numbers Range Number of Primes Sieve Sieve Sieve These readings are not to be considered proportationate to those given in [3], the reason being those values are obtained by execution of algorithms on a different electronic computer and these are on a different machine with advanced hardware configuration. One more point needs be made clear that these execution times are obtained at the smallest possible nanolevel and any programming language does not guarantee 100% precesion or accuracy at that scale. Repeated exceutions of the same algorithms on same machine are prone to give differenet time-readings. So the readings presented here are intended to serve as an instantneous example. A graphically representation of this data follows : AIJRFANS ; 2013, AIJRFANS All Rights Reserved Page 26

6 FIGURE 1. RUNTIME COMPARISON OF THREE REFINED SIEVES References [1] David M. Burton, Elementary Number Theory, Tata McGraw-Hill Education, [2] Donald E. Knuth, The Art of Computer Programming, Volume 1: Fundamental Algorithms, Addison- Wesley, Reading, MA, [3] Neeraj Anant Pande, Evolution of Algorithms: A Case Study of Three Prime Generating Sieves, Journal of Science and Arts, 13, 3(24), , [4] Herbert Schildt, Java : The Complete Reference, 7 th Edition, Tata McGraw - Hill Education, 2006 Acknowledgments Author owes sincere thanks to Honourable Prof. Shreehari for helping him revise this paper by accurately determining the number of steps required during primality tests by bringing it to notice that each time when determination begins by dividing by 2 it needs be counted as a step, which was missed in the first draft of the paper. The author expresses his heartfelt thanks to the Java (7 Update 25) Programming Language Development Team and the NetBeans IDE Development Team whose software were used (and also because these are available free to use) in implementing the algorithms on their platforms. Thanks will also be due to University Grants Commission (U.G.C.), New Delhi of the Government of India for funding awaited for this work under a proposed Research Project. AIJRFANS ; 2013, AIJRFANS All Rights Reserved Page 27

Prime Generating Algorithms by Skipping Composite Divisors

Prime Generating Algorithms by Skipping Composite Divisors Prime Generating Algorithms by Skipping Composite Divisors Neeraj Anant Pande Assistant Professor Department of Mathematics & Statistics Yeshwant Mahavidyalaya (College), Nanded-431602 Maharashtra, INDIA

More information

Sunoj B S *, Mathew Varkey T K Department of Mathematics, Government Polytechnic College, Attingal, Kerala, India

Sunoj B S *, Mathew Varkey T K Department of Mathematics, Government Polytechnic College, Attingal, Kerala, India International Journal of Scientific Research in Computer Science, Engineering and Information Technology 2018 IJSRCSEIT Volume 3 Issue 1 ISSN : 256-3307 Mean Sum Square Prime Labeling of Some Snake Graphs

More information

The p-sized partitioning algorithm for fast computation of factorials of numbers

The p-sized partitioning algorithm for fast computation of factorials of numbers J Supercomput (2006) 38:73 82 DOI 10.1007/s11227-006-7285-5 The p-sized partitioning algorithm for fast computation of factorials of numbers Ahmet Ugur Henry Thompson C Science + Business Media, LLC 2006

More information

International Journal of Emerging Technologies in Computational and Applied Sciences (IJETCAS)

International Journal of Emerging Technologies in Computational and Applied Sciences (IJETCAS) International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research) International Journal of Emerging Technologies in Computational

More information

CS 440 Theory of Algorithms /

CS 440 Theory of Algorithms / CS 440 Theory of Algorithms / CS 468 Algorithms in Bioinformaticsi Introduction Copyright 2007 Pearson Addison-Wesley. All rights reserved. Copyright 2007 Pearson Addison-Wesley. All rights reserved. The

More information

The Edge Domination in Prime Square Dominating Graphs

The Edge Domination in Prime Square Dominating Graphs Narayana. B et al International Journal of Computer Science and Mobile Computing Vol.6 Issue.1 January- 2017 pg. 182-189 Available Online at www.ijcsmc.com International Journal of Computer Science and

More information

Academic Programme: B.Sc. I Year. Computer Science (Optional) Hours. Fundamentals of Computer Hours.

Academic Programme: B.Sc. I Year. Computer Science (Optional) Hours. Fundamentals of Computer Hours. Swami Ramanand Teerth Marathwada University, Nanded B.Sc First Year Semester Pattern Computer Science (Optional) With Effect from 2009-10 Aims and Objectives: 1. To provide a professional level of competence

More information

Divisor cordial labeling in context of ring sum of graphs

Divisor cordial labeling in context of ring sum of graphs International Journal of Mathematics and Soft Computing Vol.7, No.1 (2017), 23-31. ISSN Print : 2249-3328 ISSN Online : 2319-5215 Divisor cordial labeling in context of ring sum of graphs G. V. Ghodasara

More information

Neighbourhood Prime Labeling On Some Graphs

Neighbourhood Prime Labeling On Some Graphs Neighbourhood Prime Labeling On Some Graphs R. Senthil Amutha 1, N. Murugesan 2 Department of Mathematics, Sree Saraswathi Thyagaraja College, Pollachi, India 1 Department of Mathematics, Government Arts

More information

List Sort. A New Approach for Sorting List to Reduce Execution Time

List Sort. A New Approach for Sorting List to Reduce Execution Time List Sort A New Approach for Sorting List to Reduce Execution Time Adarsh Kumar Verma (Student) Department of Computer Science and Engineering Galgotias College of Engineering and Technology Greater Noida,

More information

Math 302 Introduction to Proofs via Number Theory. Robert Jewett (with small modifications by B. Ćurgus)

Math 302 Introduction to Proofs via Number Theory. Robert Jewett (with small modifications by B. Ćurgus) Math 30 Introduction to Proofs via Number Theory Robert Jewett (with small modifications by B. Ćurgus) March 30, 009 Contents 1 The Integers 3 1.1 Axioms of Z...................................... 3 1.

More information

3. Data Analysis and Statistics

3. Data Analysis and Statistics 3. Data Analysis and Statistics 3.1 Visual Analysis of Data 3.2.1 Basic Statistics Examples 3.2.2 Basic Statistical Theory 3.3 Normal Distributions 3.4 Bivariate Data 3.1 Visual Analysis of Data Visual

More information

Vertex Odd Divisor Cordial Labeling for Vertex Switching of Special Graphs

Vertex Odd Divisor Cordial Labeling for Vertex Switching of Special Graphs Global Journal of Pure and Applied Mathematics. ISSN 0973-1768 Volume 13, Number 9 (017), pp. 555 5538 Research India Publications http://www.ripublication.com/gjpam.htm Vertex Odd Divisor Cordial Labeling

More information

An Algorithmic Approach to Graph Theory Neetu Rawat

An Algorithmic Approach to Graph Theory Neetu Rawat An Algorithmic Approach to Graph Theory Neetu Rawat nrwt12345@gmail.com, Assistant Professor, Chameli Devi Group of Institutions, Indore. India. Abstract This paper compares two different minimum spanning

More information

Chapter 4. square sum graphs. 4.1 Introduction

Chapter 4. square sum graphs. 4.1 Introduction Chapter 4 square sum graphs In this Chapter we introduce a new type of labeling of graphs which is closely related to the Diophantine Equation x 2 + y 2 = n and report results of our preliminary investigations

More information

Results of computer search for a perfect cuboid

Results of computer search for a perfect cuboid Results of computer search for a perfect cuboid Robert D. Matson Abstract A suite of optimized computer programs was designed to systematically search for a perfect cuboid, keep track of close misses,

More information

Total magic cordial labeling and square sum total magic cordial labeling in extended duplicate graph of triangular snake

Total magic cordial labeling and square sum total magic cordial labeling in extended duplicate graph of triangular snake 2016; 2(4): 238-242 ISSN Print: 2394-7500 ISSN Online: 2394-5869 Impact Factor: 5.2 IJAR 2016; 2(4): 238-242 www.allresearchjournal.com Received: 28-02-2016 Accepted: 29-03-2016 B Selvam K Thirusangu P

More information

Journal of Theoretics Volume 6-6, December 2004

Journal of Theoretics Volume 6-6, December 2004 Journal of Theoretics Volume 6-6, December 2004 Multi Foci Closed Curves Mohd. Javed Khilji auqilak@yahoo.co.in 3-D Govindpuri Thatipur, Gwalior (M. P) India 474 011 Abstract: A complete mathematical framework

More information

A Visualization Program for Subset Sum Instances

A Visualization Program for Subset Sum Instances A Visualization Program for Subset Sum Instances Thomas E. O Neil and Abhilasha Bhatia Computer Science Department University of North Dakota Grand Forks, ND 58202 oneil@cs.und.edu abhilasha.bhatia@my.und.edu

More information

Swami Ramanand Teerth Marathwada University, Nanded

Swami Ramanand Teerth Marathwada University, Nanded Swami Ramanand Teerth Marathwada University, Nanded Syllabus B. Sc. First Year COMPUTER SCIENCE Semester System (MCQ Pattern) (To Be Implemented From Academic Year 2013-2014) Theory/ Practical Semester

More information

VERTEX ODD DIVISOR CORDIAL GRAPHS

VERTEX ODD DIVISOR CORDIAL GRAPHS Asia Pacific Journal of Research Vol: I. Issue XXXII, October 20 VERTEX ODD DIVISOR CORDIAL GRAPHS A. Muthaiyan and 2 P. Pugalenthi Assistant Professor, P.G. and Research Department of Mathematics, Govt.

More information

Gracefulness of a New Class from Copies of kc 4 P 2n and P 2 * nc 3

Gracefulness of a New Class from Copies of kc 4 P 2n and P 2 * nc 3 International Journal of Fuzzy Mathematics and Systems. ISSN 2248-9940 Volume 2, Number 1 (2012), pp. 75-81 Research India Publications http://www.ripublication.com Gracefulness of a New Class from Copies

More information

Advanced Spam Detection Methodology by the Neural Network Classifier

Advanced  Spam Detection Methodology by the Neural Network Classifier Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 3, Issue. 2, February 2014,

More information

COP 4516: Math for Programming Contest Notes

COP 4516: Math for Programming Contest Notes COP 4516: Math for Programming Contest Notes Euclid's Algorithm Euclid's Algorithm is the efficient way to determine the greatest common divisor between two integers. Given two positive integers a and

More information

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad - 500 043 INFORMATION TECHNOLOGY COURSE DESCRIPTION FORM Course Title Course Code Regulation Course Structure Course Coordinator SOFTWARE

More information

Automatic Generation of Prime Factorization Algorithms Using Genetic Programming

Automatic Generation of Prime Factorization Algorithms Using Genetic Programming 1 Automatic Generation of Prime Factorization Algorithms Using Genetic Programming David Michael Chan Department of Computer Science Post Office Box 12587 Stanford, California 94309 dmchan@stanford.edu

More information

Divisor Cordial Labeling in the Context of Graph Operations on Bistar

Divisor Cordial Labeling in the Context of Graph Operations on Bistar Global Journal of Pure and Applied Mathematics. ISSN 0973-1768 Volume 12, Number 3 (2016), pp. 2605 2618 Research India Publications http://www.ripublication.com/gjpam.htm Divisor Cordial Labeling in the

More information

Lecture Notes, CSE 232, Fall 2014 Semester

Lecture Notes, CSE 232, Fall 2014 Semester Lecture Notes, CSE 232, Fall 2014 Semester Dr. Brett Olsen Week 11 - Number Theory Number theory is the study of the integers. The most basic concept in number theory is divisibility. We say that b divides

More information

Reflected Number Systems

Reflected Number Systems Reflected Number Systems Anurag Acharya November, 1992 CMU-CS-92-209 School of Computer Science Carnegie Mellon University Pittsburgh, PA 15213 Abstract This paper introduces the class of reflected number

More information

PARAMETERS OF OPTIMUM HIERARCHY STRUCTURE IN AHP

PARAMETERS OF OPTIMUM HIERARCHY STRUCTURE IN AHP Analytic Hierarchy 014, Washington D.C., U.S.A. PARAMETERS OF OPTIMUM HIERARCHY STRUCTURE IN AHP Stan Lipovetsky GfK Custom Research North America Mineapolis, MN, USA E-mail: stan.lipovetsky@gfk.edu ABSTRACT

More information

[Ramalingam, 4(12): December 2017] ISSN DOI /zenodo Impact Factor

[Ramalingam, 4(12): December 2017] ISSN DOI /zenodo Impact Factor GLOBAL JOURNAL OF ENGINEERING SCIENCE AND RESEARCHES FORCING VERTEX TRIANGLE FREE DETOUR NUMBER OF A GRAPH S. Sethu Ramalingam * 1, I. Keerthi Asir 2 and S. Athisayanathan 3 *1,2 & 3 Department of Mathematics,

More information

Keywords: Teaching with analogy; analogy in textbook; mathematics education; teaching geometry; secondary education.

Keywords: Teaching with analogy; analogy in textbook; mathematics education; teaching geometry; secondary education. American International Journal of Research in Science, Technology, Engineering & Mathematics Available online at http://www.iasir.net ISSN (Print): 2328-3491, ISSN (Online): 2328-3580, ISSN (CD-ROM): 2328-3629

More information

Keywords: Binary Sort, Sorting, Efficient Algorithm, Sorting Algorithm, Sort Data.

Keywords: Binary Sort, Sorting, Efficient Algorithm, Sorting Algorithm, Sort Data. Volume 4, Issue 6, June 2014 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com An Efficient and

More information

AMICABLE PAIRS OF THE FORM (i, 1)

AMICABLE PAIRS OF THE FORM (i, 1) mathematics of computation volume 56, number 194 april 1991, pages 859-865 AMICABLE PAIRS OF THE FORM (i, 1) PATRICK COSTELLO Abstract. A method is given for finding amicable pairs of a certain type. When

More information

An Eternal Domination Problem in Grids

An Eternal Domination Problem in Grids Theory and Applications of Graphs Volume Issue 1 Article 2 2017 An Eternal Domination Problem in Grids William Klostermeyer University of North Florida, klostermeyer@hotmail.com Margaret-Ellen Messinger

More information

The Lower and Upper Forcing Edge-to-vertex Geodetic Numbers of a Graph

The Lower and Upper Forcing Edge-to-vertex Geodetic Numbers of a Graph International Journal of Scientific and Innovative Mathematical Research (IJSIMR) Volume 4, Issue 6, June 2016, PP 23-27 ISSN 2347-307X (Print) & ISSN 2347-3142 (Online) DOI: http://dx.doi.org/10.20431/2347-3142.0406005

More information

Course Learning Outcomes for Unit I. Reading Assignment. Unit Lesson. UNIT I STUDY GUIDE Number Theory and the Real Number System

Course Learning Outcomes for Unit I. Reading Assignment. Unit Lesson. UNIT I STUDY GUIDE Number Theory and the Real Number System UNIT I STUDY GUIDE Number Theory and the Real Number System Course Learning Outcomes for Unit I Upon completion of this unit, students should be able to: 2. Relate number theory, integer computation, and

More information

Using Genetic Programming to Evolve a General Purpose Sorting Network for Comparable Data Sets

Using Genetic Programming to Evolve a General Purpose Sorting Network for Comparable Data Sets Using Genetic Programming to Evolve a General Purpose Sorting Network for Comparable Data Sets Peter B. Lubell-Doughtie Stanford Symbolic Systems Program Stanford University P.O. Box 16044 Stanford, California

More information

Category Theory in Ontology Research: Concrete Gain from an Abstract Approach

Category Theory in Ontology Research: Concrete Gain from an Abstract Approach Category Theory in Ontology Research: Concrete Gain from an Abstract Approach Markus Krötzsch Pascal Hitzler Marc Ehrig York Sure Institute AIFB, University of Karlsruhe, Germany; {mak,hitzler,ehrig,sure}@aifb.uni-karlsruhe.de

More information

31.6 Powers of an element

31.6 Powers of an element 31.6 Powers of an element Just as we often consider the multiples of a given element, modulo, we consider the sequence of powers of, modulo, where :,,,,. modulo Indexing from 0, the 0th value in this sequence

More information

Topological Integer Additive Set-Sequential Graphs. Received: 7 April 2015 / Accepted: 26 June 2015 / Published: 3 July 2015

Topological Integer Additive Set-Sequential Graphs. Received: 7 April 2015 / Accepted: 26 June 2015 / Published: 3 July 2015 Mathematics 2015, 3, 604-614; doi:10.3390/math3030604 OPEN ACCESS mathematics ISSN 2227-7390 www.mdpi.com/journal/mathematics Article Topological Integer Additive Set-Sequential Graphs Sudev Naduvath 1,

More information

Modified S-Control Chart for Specified value of Cp

Modified S-Control Chart for Specified value of Cp American International Journal of Research in Science, Technology, Engineering & Mathematics Available online at http://www.iasir.net ISSN (Print): 38-349, ISSN (Online): 38-358, ISSN (CD-ROM): 38-369

More information

2014, IJARCSSE All Rights Reserved Page 303

2014, IJARCSSE All Rights Reserved Page 303 Volume 4, Issue 1, January 2014 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com A Novel Software

More information

AWERProcedia Information Technology & Computer Science

AWERProcedia Information Technology & Computer Science AWERProcedia Information Technology & Computer Science Vol 04 (2013) 628-633 3 rd World Conference on Innovation and Computer Sciences 2013 Searching under uncertain conditions Bogdan Walek *, Department

More information

Beyond Counting. Owen Kaser. September 17, 2014

Beyond Counting. Owen Kaser. September 17, 2014 Beyond Counting Owen Kaser September 17, 2014 1 Introduction Combinatorial objects such as permutations and combinations are frequently studied from a counting perspective. For instance, How many distinct

More information

Disjoint directed cycles

Disjoint directed cycles Disjoint directed cycles Noga Alon Abstract It is shown that there exists a positive ɛ so that for any integer k, every directed graph with minimum outdegree at least k contains at least ɛk vertex disjoint

More information

LESSON PLAN SUB NAME : OBJECT ORIENTED ANALYSIS AND DESIGN UNIT SYLLABUS

LESSON PLAN SUB NAME : OBJECT ORIENTED ANALYSIS AND DESIGN UNIT SYLLABUS LP Rev. : 00 Page 1 of 6 UNIT: I FUNDAMENTALS SEMESTER : 5 FUNDAMENTALS 8 An overview of object oriented systems development Object basics Object oriented systems development life cycle. OBJECTIVE: To

More information

NEIGHBOURHOOD SUM CORDIAL LABELING OF GRAPHS

NEIGHBOURHOOD SUM CORDIAL LABELING OF GRAPHS NEIGHBOURHOOD SUM CORDIAL LABELING OF GRAPHS A. Muthaiyan # and G. Bhuvaneswari * Department of Mathematics, Government Arts and Science College, Veppanthattai, Perambalur - 66, Tamil Nadu, India. P.G.

More information

Modelling Structures in Data Mining Techniques

Modelling Structures in Data Mining Techniques Modelling Structures in Data Mining Techniques Ananth Y N 1, Narahari.N.S 2 Associate Professor, Dept of Computer Science, School of Graduate Studies- JainUniversity- J.C.Road, Bangalore, INDIA 1 Professor

More information

On the Geodetic Number of Line Graph

On the Geodetic Number of Line Graph Int. J. Contemp. Math. Sciences, Vol. 7, 01, no. 46, 89-95 On the Geodetic Number of Line Graph Venkanagouda M. Goudar Sri Gouthama Research Center [Affiliated to Kuvempu University] Department of Mathematics,

More information

A Procedure to Clip Line Segment

A Procedure to Clip Line Segment Vol.5, No.1 (2014), pp.9-20 http://dx.doi.org/10.14257/ijcg.2014.5.1.02 A Procedure to Clip Line Segment Bimal Kumar Ray School of Information Technology & Engineering VIT University, Vellore 632014, India

More information

Graph Labelings in Konigsberg Bridge Problem

Graph Labelings in Konigsberg Bridge Problem IOSR Journal of Mathematics (IOSR-JM) e-issn: 2278-5728, p-issn: 2319-765X. Volume 11, Issue 5 Ver. II (Sep. - Oct. 2015), PP 29-36 www.iosrjournals.org Graph Labelings in Konigsberg Bridge Problem N.

More information

A Note On The Sparing Number Of The Sieve Graphs Of Certain Graphs

A Note On The Sparing Number Of The Sieve Graphs Of Certain Graphs Applied Mathematics E-Notes, 15(015), 9-37 c ISSN 1607-510 Available free at mirror sites of http://www.math.nthu.edu.tw/ amen/ A Note On The Sparing Number Of The Sieve Graphs Of Certain Graphs Naduvath

More information

Position Sort. Anuj Kumar Developer PINGA Solution Pvt. Ltd. Noida, India ABSTRACT. Keywords 1. INTRODUCTION 2. METHODS AND MATERIALS

Position Sort. Anuj Kumar Developer PINGA Solution Pvt. Ltd. Noida, India ABSTRACT. Keywords 1. INTRODUCTION 2. METHODS AND MATERIALS Position Sort International Journal of Computer Applications (0975 8887) Anuj Kumar Developer PINGA Solution Pvt. Ltd. Noida, India Mamta Former IT Faculty Ghaziabad, India ABSTRACT Computer science has

More information

Vertex Magic Total Labelings of Complete Graphs

Vertex Magic Total Labelings of Complete Graphs AKCE J. Graphs. Combin., 6, No. 1 (2009), pp. 143-154 Vertex Magic Total Labelings of Complete Graphs H. K. Krishnappa, Kishore Kothapalli and V. Ch. Venkaiah Center for Security, Theory, and Algorithmic

More information

THEORY OF COMPUTATION

THEORY OF COMPUTATION Chapter Eleven THEORY OF COMPUTATION Chapter Summary This chapter introduces the subjects of computability as well as problem classification according to (time) complexity. It begins by presenting the

More information

A close look towards Modified Booth s algorithm with BKS Process

A close look towards Modified Booth s algorithm with BKS Process IOSR Journal of Engineering (IOSRJEN) ISSN: 2250-3021 Volume 2, Issue 6 (June 2012), PP 33-40 www.iosrjen.org A close look towards Modified Booth s algorithm with BKS Process Barun Biswas*, Krishnendu

More information

1. Chapter 1, # 1: Prove that for all sets A, B, C, the formula

1. Chapter 1, # 1: Prove that for all sets A, B, C, the formula Homework 1 MTH 4590 Spring 2018 1. Chapter 1, # 1: Prove that for all sets,, C, the formula ( C) = ( ) ( C) is true. Proof : It suffices to show that ( C) ( ) ( C) and ( ) ( C) ( C). ssume that x ( C),

More information

Two-dimensional Totalistic Code 52

Two-dimensional Totalistic Code 52 Two-dimensional Totalistic Code 52 Todd Rowland Senior Research Associate, Wolfram Research, Inc. 100 Trade Center Drive, Champaign, IL The totalistic two-dimensional cellular automaton code 52 is capable

More information

(1,2) - Domination in Line Graphs of C n, P n and K 1,n

(1,2) - Domination in Line Graphs of C n, P n and K 1,n American Journal of Computational and Applied Mathematics 03, 3(3): 6-67 DOI: 0.593/j.ajcam.030303.0 (,) - Domination in Line Graphs of C n, P n and K,n N. Murugesan, Deepa. S. Nair * Post Graduate and

More information

The Edge Fixing Edge-To-Vertex Monophonic Number Of A Graph

The Edge Fixing Edge-To-Vertex Monophonic Number Of A Graph Applied Mathematics E-Notes, 15(2015), 261-275 c ISSN 1607-2510 Available free at mirror sites of http://www.math.nthu.edu.tw/ amen/ The Edge Fixing Edge-To-Vertex Monophonic Number Of A Graph KrishnaPillai

More information

Classifying Twitter Data in Multiple Classes Based On Sentiment Class Labels

Classifying Twitter Data in Multiple Classes Based On Sentiment Class Labels Classifying Twitter Data in Multiple Classes Based On Sentiment Class Labels Richa Jain 1, Namrata Sharma 2 1M.Tech Scholar, Department of CSE, Sushila Devi Bansal College of Engineering, Indore (M.P.),

More information

of Nebraska - Lincoln

of Nebraska - Lincoln University of Nebraska - Lincoln DigitalCommons@University of Nebraska - Lincoln MAT Exam Expository Papers Math in the Middle Institute Partnership -007 The Polygon Game Kyla Hall Follow this and additional

More information

International Journal of Scientific & Engineering Research, Volume 4, Issue 7, July ISSN

International Journal of Scientific & Engineering Research, Volume 4, Issue 7, July ISSN International Journal of Scientific & Engineering Research, Volume 4, Issue 7, July-201 971 Comparative Performance Analysis Of Sorting Algorithms Abhinav Yadav, Dr. Sanjeev Bansal Abstract Sorting Algorithms

More information

International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research)

International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research) International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research) International Journal of Emerging Technologies in Computational

More information

More on Permutation Labeling of Graphs

More on Permutation Labeling of Graphs International Journal of Applied Graph Theory Vol.1, No. (017), 30-4. ISSN(Online) : 456 7884 More on Permutation Labeling of Graphs G. V. Ghodasara Department of Mathematics H. & H. B. Kotak Institute

More information

Table 1 below illustrates the construction for the case of 11 integers selected from 20.

Table 1 below illustrates the construction for the case of 11 integers selected from 20. Q: a) From the first 200 natural numbers 101 of them are arbitrarily chosen. Prove that among the numbers chosen there exists a pair such that one divides the other. b) Prove that if 100 numbers are chosen

More information

Generating the Nine-Point Graphs

Generating the Nine-Point Graphs MATHEMATICS OF COMPUTATION, VOLUME 28, NUMBER 127, JULY 1974, PAGES 833-838 Generating the Nine-Point Graphs By H. H. Baker, A. K. Dewdney and A. L. Szilard Abstract. A program has been written which recently

More information

The Practice of Computing Using PYTHON. Chapter 2. Control. Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley

The Practice of Computing Using PYTHON. Chapter 2. Control. Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley The Practice of Computing Using PYTHON William Punch Richard Enbody Chapter 2 Control 1 Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Control: A Quick Overview 2 Selection

More information

Note on Group Distance Magic Graphs G[C 4 ]

Note on Group Distance Magic Graphs G[C 4 ] DOI 10.1007/s00373-013-1294-z ORIGINAL PAPER Note on Group Distance Magic Graphs G[C 4 ] Sylwia Cichacz Received: 10 May 2012 / Revised: 25 January 2013 The Author(s) 2013. This article is published with

More information

Unit 7 Number System and Bases. 7.1 Number System. 7.2 Binary Numbers. 7.3 Adding and Subtracting Binary Numbers. 7.4 Multiplying Binary Numbers

Unit 7 Number System and Bases. 7.1 Number System. 7.2 Binary Numbers. 7.3 Adding and Subtracting Binary Numbers. 7.4 Multiplying Binary Numbers Contents STRAND B: Number Theory Unit 7 Number System and Bases Student Text Contents Section 7. Number System 7.2 Binary Numbers 7.3 Adding and Subtracting Binary Numbers 7.4 Multiplying Binary Numbers

More information

An Intelligent Tutoring System Prototype for Learning to Program Java TM

An Intelligent Tutoring System Prototype for Learning to Program Java TM An Intelligent Tutoring System Prototype for Learning to Program Java TM Edward R. Sykes School of Computing and Information Management, Sheridan College 430 Trafalgar Road, Oakville, Ont., Canada, L6H

More information

Gujarat University M. Sc. Computer Science [S. F.] Semester-1 Syllabus Gujarat Arts & Science College, Ahmedabad.

Gujarat University M. Sc. Computer Science [S. F.] Semester-1 Syllabus Gujarat Arts & Science College, Ahmedabad. B. Sc. Computer Science SEM-II EFFECTIVE FROM ACADEMIC YEAR - 2016-2017 CODE Titles Th. Pr. COM-103 ProgramminginC (Theory) 4 COM-104 ProgramminginC(Practical) 4 Teaching Scheme Unit Computer Theory COM

More information

s(n) An Arithmetic Function of Some Interest, and Related Arithmetic

s(n) An Arithmetic Function of Some Interest, and Related Arithmetic s(n) An Arithmetic Function of Some Interest, and Related Arithmetic Gideon Samid, PhD samidg@tx.technion.ac.il Abstract: Every integer n > 0 є N defines an increasing monotonic series of integers: n 1,

More information

Intermediate Mathematics League of Eastern Massachusetts

Intermediate Mathematics League of Eastern Massachusetts Meet # January 010 Intermediate Mathematics League of Eastern Massachusetts Meet # January 010 Category 1 - Mystery Meet #, January 010 1. Of all the number pairs whose sum equals their product, what is

More information

An Enhanced Selection Sort Algorithm

An Enhanced Selection Sort Algorithm SUST Journal of Science and Technology, Vol. 21, No. 1, 2014; P:9-15 An Enhanced Selection Sort Algorithm (Submitted: January 1, 2013; Accepted for Publication: June 18, 2013) Md. Khairullah Department

More information

PROOF OF THE COLLATZ CONJECTURE KURMET SULTAN. Almaty, Kazakhstan. ORCID ACKNOWLEDGMENTS

PROOF OF THE COLLATZ CONJECTURE KURMET SULTAN. Almaty, Kazakhstan.   ORCID ACKNOWLEDGMENTS PROOF OF THE COLLATZ CONJECTURE KURMET SULTAN Almaty, Kazakhstan E-mail: kurmet.sultan@gmail.com ORCID 0000-0002-7852-8994 ACKNOWLEDGMENTS 2 ABSTRACT This article contains a proof of the Collatz conjecture.

More information

International Journal of Mathematics Trends and Technology (IJMTT) Volume 36 Number 4- August 2016

International Journal of Mathematics Trends and Technology (IJMTT) Volume 36 Number 4- August 2016 Vertex Bimagic Total Labeling for Graphs R. Senthil Amutha 1, N. Murugesan 2 1 Department of Mathematics, Sree Saraswathi Thyagaraja College, Pollachi, India 2 Department of Mathematics, Government Arts

More information

On Shanks Algorithm for Modular Square Roots

On Shanks Algorithm for Modular Square Roots On Shanks Algorithm for Modular Square Roots Jan-Christoph Schlage-Puchta 29 May 2003 Abstract Let p be a prime number, p = 2 n q +1, where q is odd. D. Shanks described an algorithm to compute square

More information

VLSI Based 16 Bit ALU with Interfacing Circuit

VLSI Based 16 Bit ALU with Interfacing Circuit Available online at www.ijiere.com International Journal of Innovative and Emerging Research in Engineering e-issn: 2394-3343 p-issn: 2394-5494 VLSI Based 16 Bit ALU with Interfacing Circuit Chandni N.

More information

Subject Name: OPERATING SYSTEMS. Subject Code: 10EC65. Prepared By: Kala H S and Remya R. Department: ECE. Date:

Subject Name: OPERATING SYSTEMS. Subject Code: 10EC65. Prepared By: Kala H S and Remya R. Department: ECE. Date: Subject Name: OPERATING SYSTEMS Subject Code: 10EC65 Prepared By: Kala H S and Remya R Department: ECE Date: Unit 7 SCHEDULING TOPICS TO BE COVERED Preliminaries Non-preemptive scheduling policies Preemptive

More information

H. W. Kuhn. Bryn Mawr College

H. W. Kuhn. Bryn Mawr College VARIANTS OF THE HUNGARIAN METHOD FOR ASSIGNMENT PROBLEMS' H. W. Kuhn Bryn Mawr College The author presents a geometrical modelwhich illuminates variants of the Hungarian method for the solution of the

More information

A Study on Website Quality Models

A Study on Website Quality Models International Journal of Scientific and Research Publications, Volume 4, Issue 12, December 2014 1 A Study on Website Quality Models R.Anusha Department of Information Systems Management, M.O.P Vaishnav

More information

Advanced Algorithms and Data Structures

Advanced Algorithms and Data Structures Advanced Algorithms and Data Structures Prof. Tapio Elomaa tapio.elomaa@tut.fi Course Prerequisites A seven credit unit course Replaced OHJ-2156 Analysis of Algorithms We take things a bit further than

More information

Primes in Classes of the Iterated Totient Function

Primes in Classes of the Iterated Totient Function 1 2 3 47 6 23 11 Journal of Integer Sequences, Vol. 11 (2008), Article 08.1.2 Primes in Classes of the Iterated Totient Function Tony D. Noe 14025 NW Harvest Lane Portland, OR 97229 USA noe@sspectra.com

More information

VISUALIZING NP-COMPLETENESS THROUGH CIRCUIT-BASED WIDGETS

VISUALIZING NP-COMPLETENESS THROUGH CIRCUIT-BASED WIDGETS University of Portland Pilot Scholars Engineering Faculty Publications and Presentations Shiley School of Engineering 2016 VISUALIZING NP-COMPLETENESS THROUGH CIRCUIT-BASED WIDGETS Steven R. Vegdahl University

More information

(i, j)-almost Continuity and (i, j)-weakly Continuity in Fuzzy Bitopological Spaces

(i, j)-almost Continuity and (i, j)-weakly Continuity in Fuzzy Bitopological Spaces International Journal of Scientific and Innovative Mathematical Research (IJSIMR) Volume 4, Issue 2, February 2016, PP 89-98 ISSN 2347-307X (Print) & ISSN 2347-3142 (Online) www.arcjournals.org (i, j)-almost

More information

Number System. Introduction. Natural Numbers (N) Whole Numbers (W) Integers (Z) Prime Numbers (P) Face Value. Place Value

Number System. Introduction. Natural Numbers (N) Whole Numbers (W) Integers (Z) Prime Numbers (P) Face Value. Place Value 1 Number System Introduction In this chapter, we will study about the number system and number line. We will also learn about the four fundamental operations on whole numbers and their properties. Natural

More information

Mathematics Background

Mathematics Background Finding Area and Distance Students work in this Unit develops a fundamentally important relationship connecting geometry and algebra: the Pythagorean Theorem. The presentation of ideas in the Unit reflects

More information

arxiv: v1 [cs.dm] 1 Jul 2016

arxiv: v1 [cs.dm] 1 Jul 2016 1 A Note on Extended Euclid s Algorithm arxiv:1607.00106v1 [cs.dm] 1 Jul 2016 Hing Leung Department of Computer Science New Mexico State University Las Cruces, NM 88003, USA Abstract Starting with the

More information

MLR Institute of Technology

MLR Institute of Technology MLR Institute of Technology Laxma Reddy Avenue, Dundigal, Quthbullapur (M), yderabad 500 043 Phone Nos: 08418 204066 / 204088, Fax : 08418 204088 COURE DECRIPTION Name of the Dept.: INFORMATION TECNOLOGY

More information

Austin Herring Recitation 002 ECE 200 Project December 4, 2013

Austin Herring Recitation 002 ECE 200 Project December 4, 2013 1. Fastest Circuit a. How Design Was Obtained The first step of creating the design was to derive the expressions for S and C out from the given truth tables. This was done using Karnaugh maps. The Karnaugh

More information

A Study on Numerical Exact Solution of Euler, Improved Euler and Runge - Kutta Method

A Study on Numerical Exact Solution of Euler, Improved Euler and Runge - Kutta Method A Study on Numerical Exact Solution of Euler, Improved Euler and Runge - Kutta Method Mrs. P. Sampoornam P.K.R Arts College for Women, Gobichettipalayam Abstract: In this paper, I will discuss the Runge

More information

Violations of the contract are exceptions, and are usually handled by special language constructs. Design by contract

Violations of the contract are exceptions, and are usually handled by special language constructs. Design by contract Specification and validation [L&G Ch. 9] Design patterns are a useful way to describe program structure. They provide a guide as to how a program fits together. Another dimension is the responsibilities

More information

Comparing Two Program Contents with Computing Curricula 2005 Knowledge Areas

Comparing Two Program Contents with Computing Curricula 2005 Knowledge Areas Comparing Two Program Contents with Computing Curricula 2005 Knowledge Areas Azad Ali, Indiana University of Pennsylvania azad.ali@iup.edu Frederick G. Kohun, Robert Morris University kohun@rmu.edu David

More information

CALEDONIAN COLLEGE OF ENGINEERING, MODULE HANDBOOK. Department of Electrical & Computer Engineering SULTANATE OF OMAN. Module Code

CALEDONIAN COLLEGE OF ENGINEERING, MODULE HANDBOOK. Department of Electrical & Computer Engineering SULTANATE OF OMAN. Module Code Module Code M2G424866 Object Oriented Programming CALEDONIAN COLLEGE OF ENGINEERING, SULTANATE OF OMAN 2018-2019 MODULE HANDBOOK Semester: A Module Leader Shahida T Department of Electrical & Computer

More information

Square Difference Prime Labeling for Some Snake Graphs

Square Difference Prime Labeling for Some Snake Graphs Global Journal of Pure and Applied Mathematics. ISSN 0973-1768 Volume 13, Number 3 (017), pp. 1083-1089 Research India Publications http://www.ripublication.com Square Difference Prime Labeling for Some

More information

Using a Cache Simulator on Big Data Applications

Using a Cache Simulator on Big Data Applications 1 Using a Cache Simulator on Big Data Applications Liliane Ntaganda Spelman College lntagand@scmail.spelman.edu Hyesoon Kim Georgia Institute of Technology hyesoon@cc.gatech.edu ABSTRACT From the computer

More information

Page 1 of 7 SCAA Dt

Page 1 of 7 SCAA Dt Page 1 of 7 SCAA Dt. 06.02.2014 BHARATHIAR UNIVERSITY, COIMBATORE Br. I. (b). M.Sc. Mathematics (CA) (The curriculum is offered by the University Department under CBCS Pattern) (with effect from 2014-15

More information

15 212: Principles of Programming. Some Notes on Induction

15 212: Principles of Programming. Some Notes on Induction 5 22: Principles of Programming Some Notes on Induction Michael Erdmann Spring 20 These notes provide a brief introduction to induction for proving properties of ML programs. We assume that the reader

More information