SlideShare a Scribd company logo
1 of 3
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 09 | Sep-2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 37
Breaking a Stick to form a Nonagon with Positive Integers using
Programming Language MATLAB
S.N.R.G. Bharat Iragavarapu 1, Konathala Chetan 2
1 Assistant Professor, Department of Mathematics
GVP College of Engineering (Autonomous), Visakhapatnam, AP, India
2 B.Tech Student, Department of Electronics and Communication Engineering
GVP College of Engineering (Autonomous), Visakhapatnam, AP, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - In this paper, using a computer programming
language, we determine the number of nonagons that can be
formed by using a stick of given length say n units, n being a
positive integer greater than 8.
Key Words: Nonagon, Triangle inequality, Polygon,
inequality condition, Programming language
1.INTRODUCTION
In [1, 2, 3, 4, 5, 6] we formed a triangle,
quadrilateral, pentagon, hexagon, heptagon, octagon
through breaking a stick using programming language. In
this paper, by using MATLAB we form all possible nonagons
with positive integers through braking stick, for any such n.
For example, suppose we take a stick of length 12 units and
cut this stick at 8 places to form 9 parts of the stick. Let a, b,
c, d, e, f, g, h, i be the lengths of the nine parts of the stick and
assume that a, b, c, d, e, f, g, h, i are positive integers. Hence
we have the basic relation a + b + c+ d + e + f +g + h+ i = n.
Here number n is given but a, b, c, d, e, f, g, h, i are variable
numbers. For formation of a nonagon having side lengths a,
b, c, d, e, f, g, h, i we need to see that the condition a + b + c +
d + e + f + g + h > i and h is the largest side length compare
to others i.e, the sum of the remaining side lengths is greater
than the largest side length. Here (a, b, c, d, e, f, g, h, i) = (b, c,
d, e, f, g, h, i, a) = (c, d, e, f, g, h, i, a, b)=(d, e, f, g, h, i, a, b, c)=(e,
f, g, h, i, a, b, c, d)=(f, g, h, i, a, b, c, d, e) =(g, h, i, a, b, c, d, e, f)
=(h, a, b, c, d, e, f, g)=(i, h, a, b, c, d, e, f, g).
This is very difficult if the numbers of our selection are
considerably large. Now our aim is to form Nonagon with
Positive Integers using Python language
2. MAIN RESULT
2.1 Algorithm
Step 1: start
Step 2: Initialize a, b, c, d, e, f, g, h, i, l all to zero
Step 3: read stick length value as n
Step 4: initialize for loop with i<n
Step 5 : if step 4 satisfies goto step 6 else goto step 32
Step 6: initialize for loop h=1 with h<i
Step 7: if step 6 satisfies goto step 8 else goto step 31
Step 8 : initialize for loop g=1 with g<h
Step 9 : if step 8 satisfies goto step 10 else goto step 30
Step 10 : initialize for loop f=1 with f<g
Step 11 : if step 10 satisfies goto step 12 else goto step 29
Step 12 : initialize for loop e=1 with e<f
Step 13 : if step 12 satisfies goto step 14 else goto step 28
Step 14 : initialize for loop d=1 with d<e
Step 15 : if step 14 satisfies goto step 16 else goto step 27
Step 16 : initialize for loop c=1 with c<d
Step 17 : if step 16 satisfies goto step 18 else goto step 26
Step 18 : initialize for loop b=1 with b<c
Step 19 : if step 18 satisfies goto step 20 else goto step 25
Step 20 : initialize for loop a=1 with a<b
Step 21 : if step 20 satisfies goto step 22 else goto step 24
Step 22 : if the condition a +b +c +d +e +f + g +h> i and a + b
+c +d +e +f +g +h =n and i>a and i>b and i>c and i>d and i>e
and i>f and i>g and i>h satisfies goto step 23 else goto step
20
Step 23 : print a, b, c, d, e, f, g, h, i values as output and
increment l value
Step 24 : increment a value by 1
Step 25 : increment b value by 1
Step 26 : increment c value by 1
Step 27 : increment d value by 1
Step 28 : increment e value by 1
Step 29 : increment f value by 1
Step 30 : increment g value by 1
Step 31 : increment h value by 1
Step 32: increment i value by 1
Step 33 : print l value as number of nonagons
Step 34 : stop
2.2 Result Analysis
We are required to display all the combinations that follow
the triangle inequality. This can be achieved with help of the
following steps.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 09 | Sep-2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 38
Step 1: Write all permutations in form of triads for a given
integer.
Step 2: Eliminate equivalent permutations so that only the
combinations remain.
Step 3: Display only the combinations that satisfy the
triangle inequality.
The above procedure can be explained below :
For example,
 Consider a stick length 12.
 Let the combinations are (1, 1, 1, 1, 1, 1, 1, 2, 3), (1,
1, 1, 1, 1, 1, 1, 1, 4).
 The total number of hexagons with stick length 12
are 2
We can represent this result in outputs..
2.2 Outputs
Fig. 1 Stick length n=12
Fig. 2 Stick length n=15
Fig. 2 Stick length n=17
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 09 | Sep-2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 39
Fig -4: Stick length n=20
3. CONCLUSIONS
By using this program, we can easily find the n-sided
Pythagoras polygon for any (n-1) natural numbers. That n-
sided polygon satisfies the extension of a Pythagoras
theorem.
REFERENCES
[1] S.N.R.G.Bharat Iragavarapu, M.Anuraag Chandra
Breaking a Stick to form a triangle, Journal of Computational
Mathematics and Ap-plied Mathematics, Volume 1, Issue 1,
Mantech Publications, 2016.
[2] S.N.R.G.Bharat Iragavarapu, J. kushwanth, Formation of
a Integer Quadrilateral through Breaking a Stick,
International Journal of Innovative research and Advanced
Studies, Volume 4, Issue 3, Pg 350-352, March 2017.
[3] S.N.R.G.Bharat Iragavarapu, Chandolu Somarjun,
Breaking a Stick to form a Pentagon with Positive Integers
using Programming Language Python, International
Research Journal of Engineering and Technology (IRJET),
Volume 4, Issue 8, Pg 95-97, Aug- 2017.
[4] S.N.R.G.Bharat Iragavarapu, Breaking a Stick to form a
Hexagon with Positive Integers using Programming
Language Python, International Journal of Scientific
Research and Development (IJSRD), (Accepted for
publication).
[5] S.N.R.G.Bharat Iragavarapu, Breaking a Stick to form a
Heptagon with Positive Integers Journal of Journal of
information technology and sciences, MAT journals.
(Accepted for publication).
[6] S.N.R.G.Bharat Iragavarapu, vasudeva Rao, Breaking a
Stick to form a Octagon with Positive Integers, International
Journal for Research in Applied Science & Engineering
Technology (IJRASET)(Accepted for publication).
BIOGRAPHIES
S.N.R.G.Bharat Iragavarapu (born
April 25, 1990) is working as
Assistant professor in the
Department of Mathematics, GVP
College of Engineering (A),
Visakhapatnam, Andhra Pradesh,
India. He completed his Masters
degree in Mathematics from Andhra
University in the year 2012 with 8.9
CGPA. (Secured university second).
Worked as Junior research fellow in NBHM-DAE project
during 2012-2015. Published 3 research papers in
international journals. During this academic year 2016-17
there are 10 publications in national journals on the topic
related to the present work.
Kuppili Sai Rahul is studying B.Tech,
fourth year in the Department of
Electronics and communication
engineering, Gayatri College of
Engineering (A), Visakhapatnam,
Andhra Pradesh, India.

More Related Content

What's hot

IRJET- Integral Solutions of the Sextic Diophantine Equation with Five Unknow...
IRJET- Integral Solutions of the Sextic Diophantine Equation with Five Unknow...IRJET- Integral Solutions of the Sextic Diophantine Equation with Five Unknow...
IRJET- Integral Solutions of the Sextic Diophantine Equation with Five Unknow...IRJET Journal
 
Algebra 2 Notes 2-6
Algebra 2 Notes 2-6Algebra 2 Notes 2-6
Algebra 2 Notes 2-6Kate Nowak
 
Support Vector Machines
Support Vector MachinesSupport Vector Machines
Support Vector Machinessarith divakar
 
11.branch and bound technique for three stage flow shop scheduling problem in...
11.branch and bound technique for three stage flow shop scheduling problem in...11.branch and bound technique for three stage flow shop scheduling problem in...
11.branch and bound technique for three stage flow shop scheduling problem in...Alexander Decker
 
Branch and bound technique for three stage flow shop scheduling problem inclu...
Branch and bound technique for three stage flow shop scheduling problem inclu...Branch and bound technique for three stage flow shop scheduling problem inclu...
Branch and bound technique for three stage flow shop scheduling problem inclu...Alexander Decker
 
NOTE MATH FORM 3 - INDICES
NOTE MATH FORM 3 - INDICESNOTE MATH FORM 3 - INDICES
NOTE MATH FORM 3 - INDICESNad0209
 
2.4 mst kruskal’s
2.4 mst  kruskal’s 2.4 mst  kruskal’s
2.4 mst kruskal’s Krish_ver2
 
IRJET- On the Homogeneous Ternary Quadratic Diophantine Equation 3(X+Y)2-2xy=...
IRJET- On the Homogeneous Ternary Quadratic Diophantine Equation 3(X+Y)2-2xy=...IRJET- On the Homogeneous Ternary Quadratic Diophantine Equation 3(X+Y)2-2xy=...
IRJET- On the Homogeneous Ternary Quadratic Diophantine Equation 3(X+Y)2-2xy=...IRJET Journal
 
Software engineering
Software engineeringSoftware engineering
Software engineeringMd Din Islam
 
Ejercicios john rangel
Ejercicios john rangelEjercicios john rangel
Ejercicios john rangeljohndaddy
 
Section 12.6 special products
Section 12.6 special productsSection 12.6 special products
Section 12.6 special productsGlenSchlee
 
Dot product calc angle to finish!
Dot product calc angle to finish!Dot product calc angle to finish!
Dot product calc angle to finish!Shaun Wilson
 
[Question Paper] Logic and Discrete Mathematics (Revised Course) [June / 2016]
[Question Paper] Logic and Discrete Mathematics (Revised Course) [June / 2016][Question Paper] Logic and Discrete Mathematics (Revised Course) [June / 2016]
[Question Paper] Logic and Discrete Mathematics (Revised Course) [June / 2016]Mumbai B.Sc.IT Study
 

What's hot (20)

IRJET- Integral Solutions of the Sextic Diophantine Equation with Five Unknow...
IRJET- Integral Solutions of the Sextic Diophantine Equation with Five Unknow...IRJET- Integral Solutions of the Sextic Diophantine Equation with Five Unknow...
IRJET- Integral Solutions of the Sextic Diophantine Equation with Five Unknow...
 
Algebra 2 Notes 2-6
Algebra 2 Notes 2-6Algebra 2 Notes 2-6
Algebra 2 Notes 2-6
 
Bresenham Line Drawing Algorithm
Bresenham Line Drawing AlgorithmBresenham Line Drawing Algorithm
Bresenham Line Drawing Algorithm
 
Formulas cinematica
Formulas cinematicaFormulas cinematica
Formulas cinematica
 
Support Vector Machines
Support Vector MachinesSupport Vector Machines
Support Vector Machines
 
Alg2 lesson 2-6 day 1
Alg2 lesson 2-6 day 1Alg2 lesson 2-6 day 1
Alg2 lesson 2-6 day 1
 
11.branch and bound technique for three stage flow shop scheduling problem in...
11.branch and bound technique for three stage flow shop scheduling problem in...11.branch and bound technique for three stage flow shop scheduling problem in...
11.branch and bound technique for three stage flow shop scheduling problem in...
 
Branch and bound technique for three stage flow shop scheduling problem inclu...
Branch and bound technique for three stage flow shop scheduling problem inclu...Branch and bound technique for three stage flow shop scheduling problem inclu...
Branch and bound technique for three stage flow shop scheduling problem inclu...
 
NOTE MATH FORM 3 - INDICES
NOTE MATH FORM 3 - INDICESNOTE MATH FORM 3 - INDICES
NOTE MATH FORM 3 - INDICES
 
2.4 mst kruskal’s
2.4 mst  kruskal’s 2.4 mst  kruskal’s
2.4 mst kruskal’s
 
IRJET- On the Homogeneous Ternary Quadratic Diophantine Equation 3(X+Y)2-2xy=...
IRJET- On the Homogeneous Ternary Quadratic Diophantine Equation 3(X+Y)2-2xy=...IRJET- On the Homogeneous Ternary Quadratic Diophantine Equation 3(X+Y)2-2xy=...
IRJET- On the Homogeneous Ternary Quadratic Diophantine Equation 3(X+Y)2-2xy=...
 
Software engineering
Software engineeringSoftware engineering
Software engineering
 
q1
q1q1
q1
 
Ejercicios john rangel
Ejercicios john rangelEjercicios john rangel
Ejercicios john rangel
 
Paper
PaperPaper
Paper
 
Section 12.6 special products
Section 12.6 special productsSection 12.6 special products
Section 12.6 special products
 
Tugas mtk 1.01
Tugas mtk 1.01Tugas mtk 1.01
Tugas mtk 1.01
 
Dot product calc angle to finish!
Dot product calc angle to finish!Dot product calc angle to finish!
Dot product calc angle to finish!
 
Section 1.3 - 1.6 review (math)
Section 1.3 - 1.6 review (math)Section 1.3 - 1.6 review (math)
Section 1.3 - 1.6 review (math)
 
[Question Paper] Logic and Discrete Mathematics (Revised Course) [June / 2016]
[Question Paper] Logic and Discrete Mathematics (Revised Course) [June / 2016][Question Paper] Logic and Discrete Mathematics (Revised Course) [June / 2016]
[Question Paper] Logic and Discrete Mathematics (Revised Course) [June / 2016]
 

Similar to Breaking a Stick to form a Nonagon with Positive Integers using Programming Language MATLAB

Pythagoras n-sided Polygon with Natural Numbers using Programming Language
Pythagoras n-sided Polygon with Natural Numbers using Programming Language Pythagoras n-sided Polygon with Natural Numbers using Programming Language
Pythagoras n-sided Polygon with Natural Numbers using Programming Language IRJET Journal
 
IRJET- Parallelization of Definite Integration
IRJET- Parallelization of Definite IntegrationIRJET- Parallelization of Definite Integration
IRJET- Parallelization of Definite IntegrationIRJET Journal
 
Cordial Labelings in the Context of Triplication
Cordial Labelings in the Context of  TriplicationCordial Labelings in the Context of  Triplication
Cordial Labelings in the Context of TriplicationIRJET Journal
 
Ejercicios asignados a yonathan david diaz granados
Ejercicios asignados a yonathan david diaz granadosEjercicios asignados a yonathan david diaz granados
Ejercicios asignados a yonathan david diaz granadosYonathanDavidDiazGra
 
ON SOME FIXED POINT RESULTS IN GENERALIZED METRIC SPACE WITH SELF MAPPINGS UN...
ON SOME FIXED POINT RESULTS IN GENERALIZED METRIC SPACE WITH SELF MAPPINGS UN...ON SOME FIXED POINT RESULTS IN GENERALIZED METRIC SPACE WITH SELF MAPPINGS UN...
ON SOME FIXED POINT RESULTS IN GENERALIZED METRIC SPACE WITH SELF MAPPINGS UN...IRJET Journal
 
Double Precision Floating Point Multiplier using Verilog
Double Precision Floating Point Multiplier using VerilogDouble Precision Floating Point Multiplier using Verilog
Double Precision Floating Point Multiplier using VerilogIRJET Journal
 
IRJET- Analysis of Heat Transfer from Rectangular Finned Surface using Shooti...
IRJET- Analysis of Heat Transfer from Rectangular Finned Surface using Shooti...IRJET- Analysis of Heat Transfer from Rectangular Finned Surface using Shooti...
IRJET- Analysis of Heat Transfer from Rectangular Finned Surface using Shooti...IRJET Journal
 
Pythagorean Triangle with 2*A/P as Gopa Numbers Of The Second Kind
Pythagorean Triangle with 2*A/P as Gopa Numbers Of The Second KindPythagorean Triangle with 2*A/P as Gopa Numbers Of The Second Kind
Pythagorean Triangle with 2*A/P as Gopa Numbers Of The Second KindIRJET Journal
 
A Subgraph Pattern Search over Graph Databases
A Subgraph Pattern Search over Graph DatabasesA Subgraph Pattern Search over Graph Databases
A Subgraph Pattern Search over Graph DatabasesIJMER
 
IRJET - To Study Analysis and Design of Multi-Storey Building using STAAD-Pro...
IRJET - To Study Analysis and Design of Multi-Storey Building using STAAD-Pro...IRJET - To Study Analysis and Design of Multi-Storey Building using STAAD-Pro...
IRJET - To Study Analysis and Design of Multi-Storey Building using STAAD-Pro...IRJET Journal
 
Generation of Pythagorean triangle with Area/ Perimeter as a Wagstaff prime n...
Generation of Pythagorean triangle with Area/ Perimeter as a Wagstaff prime n...Generation of Pythagorean triangle with Area/ Perimeter as a Wagstaff prime n...
Generation of Pythagorean triangle with Area/ Perimeter as a Wagstaff prime n...IRJET Journal
 
IRJET- Matrix Multiplication using Strassen’s Method
IRJET-  	  Matrix Multiplication using Strassen’s MethodIRJET-  	  Matrix Multiplication using Strassen’s Method
IRJET- Matrix Multiplication using Strassen’s MethodIRJET Journal
 
Sensitivity Analysis of Bread Production at Anifowose Bakery Industry, Offa, ...
Sensitivity Analysis of Bread Production at Anifowose Bakery Industry, Offa, ...Sensitivity Analysis of Bread Production at Anifowose Bakery Industry, Offa, ...
Sensitivity Analysis of Bread Production at Anifowose Bakery Industry, Offa, ...IRJET Journal
 
CS-102 DS-class_01_02 Lectures Data .pdf
CS-102 DS-class_01_02 Lectures Data .pdfCS-102 DS-class_01_02 Lectures Data .pdf
CS-102 DS-class_01_02 Lectures Data .pdfssuser034ce1
 

Similar to Breaking a Stick to form a Nonagon with Positive Integers using Programming Language MATLAB (20)

Pythagoras n-sided Polygon with Natural Numbers using Programming Language
Pythagoras n-sided Polygon with Natural Numbers using Programming Language Pythagoras n-sided Polygon with Natural Numbers using Programming Language
Pythagoras n-sided Polygon with Natural Numbers using Programming Language
 
IRJET- Parallelization of Definite Integration
IRJET- Parallelization of Definite IntegrationIRJET- Parallelization of Definite Integration
IRJET- Parallelization of Definite Integration
 
Cordial Labelings in the Context of Triplication
Cordial Labelings in the Context of  TriplicationCordial Labelings in the Context of  Triplication
Cordial Labelings in the Context of Triplication
 
Ejercicios asignados a yonathan david diaz granados
Ejercicios asignados a yonathan david diaz granadosEjercicios asignados a yonathan david diaz granados
Ejercicios asignados a yonathan david diaz granados
 
ON SOME FIXED POINT RESULTS IN GENERALIZED METRIC SPACE WITH SELF MAPPINGS UN...
ON SOME FIXED POINT RESULTS IN GENERALIZED METRIC SPACE WITH SELF MAPPINGS UN...ON SOME FIXED POINT RESULTS IN GENERALIZED METRIC SPACE WITH SELF MAPPINGS UN...
ON SOME FIXED POINT RESULTS IN GENERALIZED METRIC SPACE WITH SELF MAPPINGS UN...
 
Double Precision Floating Point Multiplier using Verilog
Double Precision Floating Point Multiplier using VerilogDouble Precision Floating Point Multiplier using Verilog
Double Precision Floating Point Multiplier using Verilog
 
IRJET- Analysis of Heat Transfer from Rectangular Finned Surface using Shooti...
IRJET- Analysis of Heat Transfer from Rectangular Finned Surface using Shooti...IRJET- Analysis of Heat Transfer from Rectangular Finned Surface using Shooti...
IRJET- Analysis of Heat Transfer from Rectangular Finned Surface using Shooti...
 
On Cubic Graceful Labeling
On Cubic Graceful LabelingOn Cubic Graceful Labeling
On Cubic Graceful Labeling
 
Pythagorean Triangle with 2*A/P as Gopa Numbers Of The Second Kind
Pythagorean Triangle with 2*A/P as Gopa Numbers Of The Second KindPythagorean Triangle with 2*A/P as Gopa Numbers Of The Second Kind
Pythagorean Triangle with 2*A/P as Gopa Numbers Of The Second Kind
 
A Subgraph Pattern Search over Graph Databases
A Subgraph Pattern Search over Graph DatabasesA Subgraph Pattern Search over Graph Databases
A Subgraph Pattern Search over Graph Databases
 
IRJET - To Study Analysis and Design of Multi-Storey Building using STAAD-Pro...
IRJET - To Study Analysis and Design of Multi-Storey Building using STAAD-Pro...IRJET - To Study Analysis and Design of Multi-Storey Building using STAAD-Pro...
IRJET - To Study Analysis and Design of Multi-Storey Building using STAAD-Pro...
 
Generation of Pythagorean triangle with Area/ Perimeter as a Wagstaff prime n...
Generation of Pythagorean triangle with Area/ Perimeter as a Wagstaff prime n...Generation of Pythagorean triangle with Area/ Perimeter as a Wagstaff prime n...
Generation of Pythagorean triangle with Area/ Perimeter as a Wagstaff prime n...
 
sheet6.pdf
sheet6.pdfsheet6.pdf
sheet6.pdf
 
doc6.pdf
doc6.pdfdoc6.pdf
doc6.pdf
 
paper6.pdf
paper6.pdfpaper6.pdf
paper6.pdf
 
lecture5.pdf
lecture5.pdflecture5.pdf
lecture5.pdf
 
LMmanual.pdf
LMmanual.pdfLMmanual.pdf
LMmanual.pdf
 
IRJET- Matrix Multiplication using Strassen’s Method
IRJET-  	  Matrix Multiplication using Strassen’s MethodIRJET-  	  Matrix Multiplication using Strassen’s Method
IRJET- Matrix Multiplication using Strassen’s Method
 
Sensitivity Analysis of Bread Production at Anifowose Bakery Industry, Offa, ...
Sensitivity Analysis of Bread Production at Anifowose Bakery Industry, Offa, ...Sensitivity Analysis of Bread Production at Anifowose Bakery Industry, Offa, ...
Sensitivity Analysis of Bread Production at Anifowose Bakery Industry, Offa, ...
 
CS-102 DS-class_01_02 Lectures Data .pdf
CS-102 DS-class_01_02 Lectures Data .pdfCS-102 DS-class_01_02 Lectures Data .pdf
CS-102 DS-class_01_02 Lectures Data .pdf
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...asadnawaz62
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEroselinkalist12
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvLewisJB
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...Chandu841456
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptSAURABHKUMAR892774
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)dollysharma2066
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.eptoze12
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfAsst.prof M.Gokilavani
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHC Sai Kiran
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 

Recently uploaded (20)

Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvv
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.ppt
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECH
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 

Breaking a Stick to form a Nonagon with Positive Integers using Programming Language MATLAB

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 09 | Sep-2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 37 Breaking a Stick to form a Nonagon with Positive Integers using Programming Language MATLAB S.N.R.G. Bharat Iragavarapu 1, Konathala Chetan 2 1 Assistant Professor, Department of Mathematics GVP College of Engineering (Autonomous), Visakhapatnam, AP, India 2 B.Tech Student, Department of Electronics and Communication Engineering GVP College of Engineering (Autonomous), Visakhapatnam, AP, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - In this paper, using a computer programming language, we determine the number of nonagons that can be formed by using a stick of given length say n units, n being a positive integer greater than 8. Key Words: Nonagon, Triangle inequality, Polygon, inequality condition, Programming language 1.INTRODUCTION In [1, 2, 3, 4, 5, 6] we formed a triangle, quadrilateral, pentagon, hexagon, heptagon, octagon through breaking a stick using programming language. In this paper, by using MATLAB we form all possible nonagons with positive integers through braking stick, for any such n. For example, suppose we take a stick of length 12 units and cut this stick at 8 places to form 9 parts of the stick. Let a, b, c, d, e, f, g, h, i be the lengths of the nine parts of the stick and assume that a, b, c, d, e, f, g, h, i are positive integers. Hence we have the basic relation a + b + c+ d + e + f +g + h+ i = n. Here number n is given but a, b, c, d, e, f, g, h, i are variable numbers. For formation of a nonagon having side lengths a, b, c, d, e, f, g, h, i we need to see that the condition a + b + c + d + e + f + g + h > i and h is the largest side length compare to others i.e, the sum of the remaining side lengths is greater than the largest side length. Here (a, b, c, d, e, f, g, h, i) = (b, c, d, e, f, g, h, i, a) = (c, d, e, f, g, h, i, a, b)=(d, e, f, g, h, i, a, b, c)=(e, f, g, h, i, a, b, c, d)=(f, g, h, i, a, b, c, d, e) =(g, h, i, a, b, c, d, e, f) =(h, a, b, c, d, e, f, g)=(i, h, a, b, c, d, e, f, g). This is very difficult if the numbers of our selection are considerably large. Now our aim is to form Nonagon with Positive Integers using Python language 2. MAIN RESULT 2.1 Algorithm Step 1: start Step 2: Initialize a, b, c, d, e, f, g, h, i, l all to zero Step 3: read stick length value as n Step 4: initialize for loop with i<n Step 5 : if step 4 satisfies goto step 6 else goto step 32 Step 6: initialize for loop h=1 with h<i Step 7: if step 6 satisfies goto step 8 else goto step 31 Step 8 : initialize for loop g=1 with g<h Step 9 : if step 8 satisfies goto step 10 else goto step 30 Step 10 : initialize for loop f=1 with f<g Step 11 : if step 10 satisfies goto step 12 else goto step 29 Step 12 : initialize for loop e=1 with e<f Step 13 : if step 12 satisfies goto step 14 else goto step 28 Step 14 : initialize for loop d=1 with d<e Step 15 : if step 14 satisfies goto step 16 else goto step 27 Step 16 : initialize for loop c=1 with c<d Step 17 : if step 16 satisfies goto step 18 else goto step 26 Step 18 : initialize for loop b=1 with b<c Step 19 : if step 18 satisfies goto step 20 else goto step 25 Step 20 : initialize for loop a=1 with a<b Step 21 : if step 20 satisfies goto step 22 else goto step 24 Step 22 : if the condition a +b +c +d +e +f + g +h> i and a + b +c +d +e +f +g +h =n and i>a and i>b and i>c and i>d and i>e and i>f and i>g and i>h satisfies goto step 23 else goto step 20 Step 23 : print a, b, c, d, e, f, g, h, i values as output and increment l value Step 24 : increment a value by 1 Step 25 : increment b value by 1 Step 26 : increment c value by 1 Step 27 : increment d value by 1 Step 28 : increment e value by 1 Step 29 : increment f value by 1 Step 30 : increment g value by 1 Step 31 : increment h value by 1 Step 32: increment i value by 1 Step 33 : print l value as number of nonagons Step 34 : stop 2.2 Result Analysis We are required to display all the combinations that follow the triangle inequality. This can be achieved with help of the following steps.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 09 | Sep-2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 38 Step 1: Write all permutations in form of triads for a given integer. Step 2: Eliminate equivalent permutations so that only the combinations remain. Step 3: Display only the combinations that satisfy the triangle inequality. The above procedure can be explained below : For example,  Consider a stick length 12.  Let the combinations are (1, 1, 1, 1, 1, 1, 1, 2, 3), (1, 1, 1, 1, 1, 1, 1, 1, 4).  The total number of hexagons with stick length 12 are 2 We can represent this result in outputs.. 2.2 Outputs Fig. 1 Stick length n=12 Fig. 2 Stick length n=15 Fig. 2 Stick length n=17
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 09 | Sep-2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 39 Fig -4: Stick length n=20 3. CONCLUSIONS By using this program, we can easily find the n-sided Pythagoras polygon for any (n-1) natural numbers. That n- sided polygon satisfies the extension of a Pythagoras theorem. REFERENCES [1] S.N.R.G.Bharat Iragavarapu, M.Anuraag Chandra Breaking a Stick to form a triangle, Journal of Computational Mathematics and Ap-plied Mathematics, Volume 1, Issue 1, Mantech Publications, 2016. [2] S.N.R.G.Bharat Iragavarapu, J. kushwanth, Formation of a Integer Quadrilateral through Breaking a Stick, International Journal of Innovative research and Advanced Studies, Volume 4, Issue 3, Pg 350-352, March 2017. [3] S.N.R.G.Bharat Iragavarapu, Chandolu Somarjun, Breaking a Stick to form a Pentagon with Positive Integers using Programming Language Python, International Research Journal of Engineering and Technology (IRJET), Volume 4, Issue 8, Pg 95-97, Aug- 2017. [4] S.N.R.G.Bharat Iragavarapu, Breaking a Stick to form a Hexagon with Positive Integers using Programming Language Python, International Journal of Scientific Research and Development (IJSRD), (Accepted for publication). [5] S.N.R.G.Bharat Iragavarapu, Breaking a Stick to form a Heptagon with Positive Integers Journal of Journal of information technology and sciences, MAT journals. (Accepted for publication). [6] S.N.R.G.Bharat Iragavarapu, vasudeva Rao, Breaking a Stick to form a Octagon with Positive Integers, International Journal for Research in Applied Science & Engineering Technology (IJRASET)(Accepted for publication). BIOGRAPHIES S.N.R.G.Bharat Iragavarapu (born April 25, 1990) is working as Assistant professor in the Department of Mathematics, GVP College of Engineering (A), Visakhapatnam, Andhra Pradesh, India. He completed his Masters degree in Mathematics from Andhra University in the year 2012 with 8.9 CGPA. (Secured university second). Worked as Junior research fellow in NBHM-DAE project during 2012-2015. Published 3 research papers in international journals. During this academic year 2016-17 there are 10 publications in national journals on the topic related to the present work. Kuppili Sai Rahul is studying B.Tech, fourth year in the Department of Electronics and communication engineering, Gayatri College of Engineering (A), Visakhapatnam, Andhra Pradesh, India.