Free Essay

Math 221

In:

Submitted By bdog
Words 1310
Pages 6
Complete 12 questions below by choosing at least four from each section.
· Ch. 11 of Discrete and Combinatorial Mathematics o Exercise 11.1, problems 3, 6, 8, 11, 15, & 16
· Ch. 11 of Discrete and Combinatorial Mathematics o Exercise 11.2, problems 1, 6, 12, & 13, o Exercise 11.3, problems 5, 20, 21, & 22 o Exercise 11.4, problems 14, 17, & 24 o Exercise 11.5, problems 4 & 7 o Exercise 11.6, problems 9 &10
· Ch. 12 of Discrete and Combinatorial Mathematics o Exercise 12.1, problems 2, 6, 7, & 11 o Exercise 12.2, problems 6 & 9 o Exercise 12.3, problems 2 & 3 * Exercise 12.5, problems 3 & 8
Section 11.1
3). For the graph in Fig. 11.7, how many paths are there from b to f ?
1). b a c d e g f
2). b a c d e f
3). b c d e g f
4). b c d e f
5). b e g f
6). b e f
This would = 6 ways.
6). If a, b are distinct vertices in a connected undirected graph G, the distance from a to b is defined to be the length of a shortest path from a to b (when a = b the distance is defined to be 0). For the graph in Fig. 11.9, find the distances from d to (each of) the other vertices in G. d to e = 1 d to f = 1 d to c = 1 d to k = 2 d to g = 2 d to h = 3 d to j = 3 d to l = 3 d to m = 3 d to i = 4
Section 11.2
1). Let G be the undirected graph in Fig. 11.27(a).
a) How many connected subgraphs of G have four vertices and include a cycle? 3
b) Describe the subgraph G1 (of G) in part (b) of the figure first, as an induced subgraph and second, in terms of deleting a vertex of G. G1 = (U) where U = {a, b, d, f, g, h, I, j}; G1 = G – {c}
c) Describe the subgraphG2 (of G) in part (c) of the figure first, as an induced subgraph and second, in terms of the deletion of vertices of G. G2 = (W), where W = {b, c, d, f, g, i, j}; G2 = G − {a, h}
d) Draw the subgraph of G induced by the set of vertices U = {b, c, d, f, i, j}. The drawing G2 is the answer for this question.
e) For the graph G, let the edge e = {c, f }. Draw the subgraph G − e. The answer to this question is in the graph below. Answer to E Answer to D

13). Let G be a cycle on n vertices. Prove that G is self-complementary if and only if n = 5.
Assuming that G is the cycle with edges {a, b}, {b, c}, {c, d}, {d, e}, and {e, a}, then G is the cycle with edges {a, c}, {c, e}, {e, b}, {b, d}, and {d, a}.Therefore G and G are isomorphic. If G is a cycle on n vertices and G, G are isomorphic, which makes n = 12n2, or n= 14nn-1, and n=5.
Section 11.3
20). a) Find an Euler circuit for the graph in Fig. 11.44. {a, b, c, g, k, j, i, h, d, e, i, f, j, g, b, f, e, b, d,} a is an Euler Circuit. b) If the edge {d, e} is removed from this graph, find an Euler trail for the resulting subgraph. { e, i, f, j, g, b, f, e, b, d, a, b, c, g, k, j, i, h, d} is an Euler Trail.

21). Determine the value(s) of n for which the complete graph Kn has an Euler circuit. For which n does Kn have an Euler trail but not an Euler circuit? n odd; n = 2
Section 11.4
17). Determine the number of vertices, the number of edges, and the number of regions for each of the planar graphs in Fig. 11.71. Then show that your answers satisfy Euler’s Theorem for connected planar graphs.

First part of the question
Euler’s rule is v-e + f=2 a) no of vertices. v=17 no of edges=34 no of faces=19, and v – e = r = 17 – 34+ 19 =2
Second part of the question
This part has vertices = 10, edges = 24, regions = 16, and v – e = 10 – 24 +16 = 2

Section 11.5
7). a) For n ≥ 3, how many different Hamilton cycles are there in the complete graph Kn?
(1/2)(n – 1)!
b) How many edge-disjoint Hamilton cycles are there in K21? 10 edge-disjoint Hamilton cycles
c) Nineteen students in a nursery school play a game each day where they hold hands to form a circle. For how many days can they do this with no student holding hands with the same playmate twice? 9 days

Section 12.1
7). Give an example of an undirected graph G = (V, E) where |V | = |E| + 1 but G is not a tree. b

d

a c
Section 12.2
9). Let G = (V, E) be an undirected graph with adjacency matrix A (G) as shown here. | V1 | V2 | V3 | V4 | V5 | V6 | V7 | V8 | V1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | V2 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | V3 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | V4 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | V5 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | V6 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | V7 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | V8 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |

Use a breadth-first search based on A (G) to determine whether G is connected.
G is connected like so V1 V7 V2 V5 V4 V3 V8 V6

Section 12.3
2). Apply the merge sort to each of the following lists. Draw the splitting and merging trees for each application of the procedure.
a) −1, 0, 2, −2, 3, 6, −3, 5, 1, 4 1 0 2 2 3 6 3 5 1 4 1 0 2 2 3 6 3 5 1 4 0 1 2 2 3 6 3 5 1 4 0 1 2 2 3 1 3 4 5 6 0 1 1 2 2 3 3 4 5 6
b) −1, 7, 4, 11, 5, −8, 15, −3, −2, 6, 10, 3 1 7 4 11 5 8 15 3 2 6 10 3 1 7 4 11 5 8 15 3 2 6 10 3 1 7 4 11 5 8 3 15 2 6 3 10 1 4 7 11 3 5 8 15 2 3 6 10 1 3 4 5 7 11 2 3 6 8 10 15 1 2 3 3 4 5 6 7 8 10 11 15

Section 12.5
3). Let T = (V, E) be a tree with |V | = n ≥ 3. a) What are the smallest and the largest numbers of articulation points that T can have? Describe the trees for each of these cases.
The T can have as little as one or as many as n – 2 articulation points. If T contains a vertex of degree (n – 1), then the vertex is the only articulation point. Then if T is a path with n vertices and n − 1 edges, then the n − 2 vertices of degree 2 they are all articulation points. b) How many biconnected components does T have in each of the cases in part (a)? When it comes in all cases a tree on n vertices will have n – 1 biconnected components, with each edge being a biconnected component.

Similar Documents

Premium Essay

Math 221

...Math 221 Quiz Review for Weeks 5 and 6 1. Find the area under the standard normal curve between z = 1.6 and z = 2.6. 2. A business wants to estimate the true mean annual income of its customers.  It randomly samples 220 of its customers.  The mean annual income was $61,400 with a standard deviation of $2,200.  Find a 95% confidence interval for the true mean annual income of the business’ customers. 3. IQ test scores are normally distributed with a mean of 100 and a standard deviation of 15. An individual's IQ score is found to be 120. Find the z-score corresponding to this value. 4. Two high school students took equivalent language tests, one in German and one in French. The student taking the German test, for which the mean was 66 and the standard deviation was 8, scored an 82, while the student taking the French test, for which the mean was 27 and the standard deviation was 5, scored a 35. Compare the scores. 5. A business wants to estimate the true mean annual income of its customers.  The business needs to be within $250 of the true mean.  The business estimates the true population standard deviation is around $2,400. If the confidence level is 90%, find the required sample size in order to meet the desired accuracy. 6. The distribution of cholesterol levels in teenage boys is approximately normal with mean = 170 and standard deviation = 30 (Source: U.S. National Center for Health Statistics). Levels above 200 warrant attention. Find the probability that...

Words: 2011 - Pages: 9

Premium Essay

Math 221 Discussion Question

...Week 1 DQ 1 Response 1) Given the enumeration methods; sum rule, product rule, permutations, combinations along with enumeration methods for indistinguishable objects, how can we devise a strategy to solve problems requiring these methods? A basic concept in the branch of the theory of algorithms called enumeration theory, which investigates general properties of classes of objects numbered by arbitrary constructive objects (cf. Constructive object). Most often, natural numbers appear in the role of the constructive objects that serve as numbers of the elements of the classes in question ("Enumeration", 2013). The Sum/Difference Rules refer to the derivative of the sum of two functions is the sum of the derivatives of the two functions ("Basic Derivative Rules", 2013). The product rule is one of several rules used to find the derivative of a function. Specifically, it is used to find the derivative of the product of two functions. It is also called Leibnitz's Law, and it states that for two functions f and g their derivative (in Leibnitz notation, ). The derivative of f times g is not equal to the derivative of f times the derivative of g: .The product rule can be used with multiple functions and is used to derive the power rule. The product rule can also be applied to dot products and cross products of vector functions. The Leibnitz Identity, a generalization of the product rule, can be applied to find higher-order derivatives ("Definition Of Product Rule", 2013). A permutation...

Words: 652 - Pages: 3

Free Essay

Math 221 Final Exam (Updated) – Devry

...MATH 221 FINAL EXAM (UPDATED) – DEVRY To purchase this, Click here http://www.activitymode.com/product/math-221-final-exam-updated-devry/ Contact us at: SUPPORT@ACTIVITYMODE.COM MATH 221 FINAL EXAM (UPDATED) – DEVRY MATH 221 FINAL EXAM (UPDATED) – DEVRY MATH 221 FINAL EXAM (UPDATED) – DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) - DEVRY MATH 221 FINAL EXAM (UPDATED) – DEVRY To purchase this, Click here http://www.activitymode.com/product/math-221-final-exam-updated-devry/ Contact...

Words: 404 - Pages: 2

Free Essay

Math 221 Homework Week 1 -Latest

...MATH 221 Homework Week 1 -Latest IF You Want To Purcahse A+ Work then Click The Link Below For Instant Down Load http://www.acehomework.net/wp-admin/post.php?post=3308&action=edit IF You Face Any Problem Then E Mail Us At JOHNMATE1122@GMAIL.COM MATH 221 Homework Week 1 1. Determine whether the data set is a population or a sample. Explain your reasoning. The age of each resident in an apartment building. Choose the correct answer below. 1. Population, because it is a collection of ages for all people in the apartment building. 2. Sample, because it is a collection of ages for all people in the apartment building, but there are other apartment buildings 3. Population, because it is a subset of all apartment buildings in the city. 4. Sample, because it is a collection of ages for some people in the apartment building. 1. Determine whether the data set is a population or a sample. Explain your reasoning. The salary of each baseball player in a league Choose the correct answer below 1. Sample, because it is a collection of salaries for some baseball players in the league 2. Sample, because it is a collection of salaries for all baseball players in the league, but there are other sports 3. Population, because it is a collection of salaries for all baseball players in the league 4. Population, because it is a subset of all athletes 2. Determine whether the underlined value is a parameter or a statistic. The average age of men who have walked on the moon...

Words: 3015 - Pages: 13

Free Essay

Mth/221 Discrete Math for Information Technology Week 4

...* MTH/221 Week Four Individual problems: * * Ch. 11 of Discrete and Combinatorial Mathematics * Exercise 11.1, problems 8, 11 , text-pg:519 Exercise 11.2, problems 1, 6, text-pg:528 Exercise 11.3, problems 5, 20 , text-pg:537 Exercise 11.4, problems 14 , text-pg:553 Exercise 11.5, problems 7 , text-pg:563 * Ch. 12 of Discrete and Combinatorial Mathematics * Exercise 12.1, problems 11 , text-pg:585 Exercise 12.2, problems 6 , text-pg:604 Exercise 12.3, problems 2 , text-pg:609 Exercise 12.5, problems 3 , text-pg:621 Chapter 11 Exercise 11.1 Problem 8: Figure 11.10 shows an undirected graph representing a section of a department store. The vertices indicate where cashiers are located; the edges denote unblocked aisles between cashiers. The department store wants to set up a security system where (plainclothes) guards are placed at certain cashier locations so that each cashier either has a guard at his or her location or is only one aisle away from a cashier who has a guard. What is the smallest number of guards needed? Figure 11.10 Problem 11: Let G be a graph that satisfies the condition in Exercise 10. (a) Must G be loop-free? (b) Could G be a multigraph? (c) If G has n vertices, can we determine how many edges it has? Exercise 11.2 Problem 1: Let G be the undirected graph in Fig. 11.27(a). a) How many connected subgraphs ofGhave four vertices and include a cycle? b) Describe the...

Words: 1159 - Pages: 5

Free Essay

Bis 155 Complete Course (Dqs - Quizes - Labs & Course Project) Devry

...BIS 155 Complete Course, BIS 155 Complete Class, BIS 155 Entire Course, BIS 155 Entire Class, Strayer BIS 155 , BIS 155 LAW , BIS 155 All Assignments, BIS 155 All Dqs, BIS 155 ExerCises, BIS 155 Final, BIS 155 Week 1, BIS 155 Week 2, BIS 155 Week 3, BIS 155 Week 4, BIS 155 Week 5, BIS 155 Week 1-5, BIS 155 mcqs, BIS 155 , BIS 155 DeVry, BOSP 434 Complete Course, BOSP 434 Complete Class, BOSP 434 Entire Course, BOSP 434 Entire Class, Strayer BOSP 434 , BOSP/434 , BOSP 434 All Assignments, BOSP 434 All Dqs, BOSP 434 ExerCises, BOSP 434 Final, BOSP 434 Week 1, BOSP 434 Week 2, BOSP 434 Week 3, BOSP 434 Week 4, BOSP 434 Week 5, BOSP 434 Week 1-5, BOSP 434 mcqs, BOSP 434 , BOSP 434 DeVry, BUS 100 Complete Course, BUS 100 Complete Class, BUS 100 Entire Course, BUS 100 Entire Class, BUS 100 , BUS 100 New Course, BUS 100 All Assignments, BUS 100 All Dqs, BUS 100 ExerCises, BUS 100 Final, BUS 100 Week 1, BUS 100 Week 2, BUS 100 Week 3, BUS 100 Week 4, BUS 100 Week 5, BUS 100 Week 1-5, BUS 100 , BUS 100 , BUS 100 Strayer, BUS 475 Complete Course, BUS 475 Complete Class, BUS 475 Entire Course BUS 475 Entire Class, Strayer BUS 475 , BUS 475 New Course, BUS 475 All Assignments, BUS 475 All Dqs, BUS 475 ExerCises, BUS 475 Final, BUS 475 Week 1, BUS 475 Week 2, BUS 475 Week 3, BUS 475 Week 4, BUS 475 Week 5, BUS 475 Week 1-5, BUS 475 mcqs, BUS 475 , BUS 475 Strayer, BUSN 319...

Words: 1473 - Pages: 6

Free Essay

Mth221

...Assignments for Math 221, Discrete Structures J. Stanley Warford April 5, 2013 Assignment 1 1. 2. 3. 4. 5. Study Section 12.2. Do Exercises 12.4(b, e). Do Exercise 12.8. Math 221, Discrete Structures Do Exercise 12.9. In your induction case, you should start with (n + 1)2 and use the result from Exercise 12.8. Do Exercise 12.10. i is divisible by 3 means that i = 3k for some integer k. You may use the fact that the sum of two expressions, each one divisible by 3, is also divisible by 3. 1 Assignment 2 1. 2. 3. 4. Study Section 12.5. Do Exercise 12.5. Do Exercise 12.14. Math 221, Discrete Structures Prove (12.16.1). There are two base cases, one for n = 1 and one for n = 2. For the induction case, there are two inductive hypotheses–one with n − 1 and one with n. You can assume both of them to prove the case for n + 1. Start with the RHS, use (12.14), then the inductive hypotheses. Prove (12.35a). The base case is n = 1. Prove (12.35b). The base case is n = 1. 5. 6. 1 Assignment 3 1. 2. Study Section 10.1. Math 221, Discrete Structures Do Exercise 10.1(a, b, c, d, e, g). For 10.1(d), you will need an implication in the body of a universal quantification. For 10.1(g), it is easiest to translate “It is not the case that” as ¬. 1 Assignment 4 1. Do Exercise 10.1(h, i, j, k, l, m). For 10.1(h) and (l), you will need an implication with the ∈ symbol. For 10.1(m), you will need to quantify with Σ with a body of 1. Do Exercise 10.3. Math 221, Discrete...

Words: 3138 - Pages: 13

Premium Essay

A Treasure Hunt at Castle Rock Using Pythagorean Quadratic

...A Treasure Hunt at Castle Rock using Pythagorean Quadratic June Tye-Patterson Math 221: Introduction to Algebra Instructor: Shenita Talton 07-13-2014 A Treasure Hunt at Castle Rock using Pythagorean Quadratic For this week assignment we are given a word problem and the use of the Pythagorean Theorem to solve it. We will be helping Ahmed and Vanessa, who both have a half of a map, find buried treasure in the desert somewhere around a place named Castle Rock. Ahmed map says the treasure is 2x+6 paces from Castle rock, whereas, Vanessa map says in order to find the treasure, go to Castle Rock, walk x paces to the north and then walk 2x+4 paces to the east. In order to discover the location of the treasure, we need to factor down the three quadratic expressions by putting the measurements into the Pythagorean Theorem. The first thing we need to do is to write an equation by inserting the binomials into the Pythagorean Theorem, which also states that every right triangle with legs of length have the relationship of a^2+b^2=c^2 x^2+ (2x+4)^2=(2x+6)^2 The binomials into the Pythagorean Theorem. x^2(2x+4) (2x+4)=(2x+6) (2x+6) The equation squared. x^2 4x+8x+8x+16=4x^2+12x+12x+36 Equation FOILED or distributed. x^2+4x^2=5x^2 First two terms added...

Words: 720 - Pages: 3

Free Essay

Econ Application

...Completion of Prerequisite Coursework  All applicants must have:  At least 45 academic credits earned (“sophomore”class standing).  Completion of one English Composition course.  2.5 minimum GPA for coursework completed at UW; 2.5 minimum Weighted GPA (see application form).  Applicants to the Bachelor of Arts must have ECON 200, ECON 201, eligible statistics course, and MATH 112 or MATH 124 completed with at least a 2.0 grade in each course and a 2.5 average across these 4 courses.  Applicants to the Bachelor of Science must have ECON 200, ECON 201, eligible statistics course, and MATH 124, MATH 125, and MATH 126 completed with at least a 2.0 grade in each course and a 2.5 average across the first 4 courses listed. MATH 125/126 will be considered separately from the “prerequisite average”  Regarding STATISTICS:  Eligible statistics courses include: STAT 311, Q SCI 381, STAT 340, STAT 341, STAT 390.  Ineligible statistics courses include: STAT 220, STAT 221, STAT 321, Q METH 201.  Regarding MATH:  MATH 134, MATH 135, and MATH 136 may substitute for MATH 124, MATH 125, and MATH 126, respectively.  MATH 112 is only acceptable for the Bachelor of Arts.  Repeating a course?  Course repeats are not encouraged. However, students are permitted to repeat each prerequisite course one time. Please list the higher of the two...

Words: 933 - Pages: 4

Free Essay

Vnu Catalog

...VINCENNES UNIVERSITY CATALOG Vol. LXIX August, 2010 No. 61 A COMPREHENSIVE TWO-YEAR COLLEGE OFFERING ASSOCIATE DEGREES IN THE LIBERAL ARTS, SCIENCES, EDUCATION, ENGINEERING, AND TECHNOLOGY AND OFFERING BACCALAUREATE DEGREES IN SPECIALIZED AREAS Accreditation The North Central Association of Colleges and Schools 30 North LaSalle Street, Suite 2400, Chicago, IL 60602 (312) 263-0456 www.ncacihe.org FAX 312-263-7462 Accreditation Review Council on Education in Surgical Technology and Surgical Assisting American Bar Association American Board of Funeral Service Education American Health Information Management Association Association of Collegiate Business Schools and Programs Commission on Accreditation of Allied Health Educational Programs Commission on Accreditation in Physical Therapy Education Federal Aviation Administration Higher Education Coordinating Board of the State of Washington Indiana State Board of Nursing Joint Review Committee on Education In Radiologic Technology National Alliance of Concurrent Enrollment Partnerships National Association of Schools of Art and Design National Association of Schools of Theatre National League for Nursing Accrediting Commission Printing Industries of America, Inc. Approved for Veterans Membership The American Association of Community Colleges Aviation Technician Education Council The Council of North Central Two Year Colleges The Higher Education Transfer Alliance The National Academic Advising Association The North Central Association...

Words: 107322 - Pages: 430

Premium Essay

Mark Haddon's The Curious Incident Of The Dog In The Night-Time

...feeling of pride and joy. On the day after finding Wellington, (Mrs Shears’ dead dog) Christopher is determined to find out who killed Wellington. “ Because it was a Good Day, I decided that I would try and find out who killed Wellington…”, (Haddon 23) Christopher wrote after concluding his book would be about the murder of Wellington. At first it seems very improbable that he would actually figure out what happened to the dog. Christopher faced setbacks that would make most people would give up, but he persisted and eventually he found out what happened. Christopher also made a goal for his math test and when he got the results, he said, “I got an A grade, which is the best result, and it made me feel like this ☺” (220). Christopher had set out from the beginning of the novel to get an A grade and he did it. He faced setbacks and it looked unlikely that he would even get to write the math test. He struggled with some of the questions. However, Christopher got an A and he feels very proud of himself. He is now confident that he can get more A’s on his next tests. Achieving goals that once seemed unattainable, Christopher is now left with a sense of worth and accomplishment. Christopher is now taking more risks in his day to day life, that at one point in time, he would never take. While trying to solve the mystery of who killed Wellington, Christopher is deciding whether or not to talk to the people on his street. “Talking to other people on our street was brave. But if you are...

Words: 959 - Pages: 4

Free Essay

Jhgb

...STUDENT SUCCESS PLANNER AGILE GRAD HOME COURSES PROGRAMS SIGN OUT BRANDON Brandon's Plan Health Science CSC 221-190-01 2015 - 2016 , Radiation Oncology Certificate 2015 - 2016 Plan Overview Term View Degree View Requirements View You have 2 unmet requirements. Search Search for a course. Start typing a course name or number. To add a course, start typing course number or name. Order by: Order by Group Order by Priority Show: Show Unmet Show All Health Science CSC 221-190-01 2015 - 2016 Requirements 1st Semester SDV101 - Orientation to: (1 Credit) met Planned for Spring 2016 BIO141 - Human Anatomy And Physiology I a (4 Credits) unmet Schedule Course ENG111 - College Composition I (3 Credits) met In progress INPROGRESS, Fall 2015 HIM111 - Medical Terminology (3 Credits) met Planned for Spring 2016 3 credits Social Science Elective - Electives should be selected with advice of a counselor or academic advisor met 1 course placeholder planned, course selection required Elective placeholder for Spring 2016 (3 Credits) unmet Schedule Course a.BIO 141-142 must be completed with a grade of "C" or higher. Students preparing for entry to competitive placement programs (Nursing, Dental Hygiene, Diagnostic Medical Sonography, and Radiography) must earn a grade of "B" or higher. 2nd Semester BIO142 - Human Anatomy & Physiology II a (4 Credits) unmet Schedule Course 3 Humanities/Fine Arts Elective Credits - Electives should be selected with...

Words: 401 - Pages: 2

Premium Essay

Pythagorean Theorem

...Pythagorean Theorem: Finding Treasure Patricia Diggs MAT 221 Introduction to Algebra Instructor Bridget Simmons May 12, 2013 Pythagorean Theorem: Finding Treasure In this paper I will attempt to use the Pythagorean Theorem to solve the problem which reads Ahmed has half of a treasure map which indicates that the treasure is buried in the desert 2x+6 paces from Castle Rock. Vanessa has the other half of the map. Her half indicates that to find the treasure, one must get to Castle Rock, walk x paces to the north, and then walk 2x+4 paces to the east. If they share their information they can find x and save a lot of digging. What is x? The Pythagorean Theorem states that in every right triangle with legs the length a and b and hypotenuse c, these lengths have the relationship of a2 + b2=c2. a=x b=(2x+4)2 c=(2x+6)2 this is the binomials we will insert into our equation x2+(2x+4)2=(2x+6)2 the binomials into the Pythagorean Theorem x2+4x2+16x+16=24x36 the binomial squared. The 4x2can be subtracted out first x2+16x+16=24x+36 now subtract 24x from both sides x2+-8x+16=36 now subtract 36 from both sides x2-8x-20=0 this is a quadratic equation to solve by factoring and using the zero factor. (x- )(x+ ) the coefficient of x2 is one (1). We can start with a pair of parenthesis with an x each. We have to find...

Words: 576 - Pages: 3

Premium Essay

Mat 221 Buried Treasure

...Buried Treasure Allen Raikes MAT 221 DR. Steven Flanders Ahmed and Vanessa has a treasure that needs to be located. It’s up to me and to help find it, I will do that by using the Pythagorean quadratic. On page 371 we learned that the Ahmed has a half of the map and Vanessa has the other half. Ahmed half in say the treasure is buried in the desert 2x+6 paces from Castle Rock and Vanessa half says that when she gets to Castle Rock to walk x paces to the north, and then walk 2x+4 paces to the east. So with all the information I have I need to find x. the Pythagorean Theorem states that in every right triangle with legs of length a and b and hypotenuse c, which have of a relationship of a2+b2=c2. In this problem I will let a=x, and b= 2x+4, and c=2x+6. So know it time to put the measurements into the Theorem equation; 1) X2+ (2x+4)2=(2x+6)2 this is the Pythagorean Theorem 2) X2+4x2+16x+16 = 4x2+ 24x+36 are the binomials squared 3) 4x2 & 4x2 on both sides can be subtracted out. 4) X2+16x+16 = 24x +36 subtract 16x from both sides 5) X2+16 = 8x+36 now subtract 36 from both sides 6) X2-20 = 8x 7) X2-8x-20=0 this is the quadratic equation to solve by factoring using the zero factor. 8) (x-)(x+) Since the coefficient of x2 is 1 we have to start with pair of () is the 20 in negative there will be one + and one – in the binomials. 9) -2, 10: -10,2: -5,4; -4, -5 10) Looks I’m going to use -10 and 2 is...

Words: 481 - Pages: 2

Free Essay

Algerbra

...Distributive Property Kimberly Smith MAT 221 Introductions to Algebra Instructor: Andrew Halverson February 15,2014 I will be using distributive property to solve how properties of real numbers are used while I simplified the three given expression. To solve these three math problem I will use the distributive property to remove the parentheses in the problem. I will also combine like terms by adding coefficients and add or subtract when needed. Finally I would have my answer and then decide if the answer is simplified, if not I will simplify. The solving of properties of real number the properties of real numbers are important to know in all subjects, even complex numbers, because many of the properties are shared. Additionally the argument to any equation in algebra is real; therefore, algebraic expressions only manipulate reals (that is, if you have integer coefficients and no radicals). 1. 2a(a-5)+4(a-5) = The given expression 2a^2-10a+4a-20 = I will use the distributive property to remove parentheses so I can combine like terms by adding coefficient. 2a^2-6a-20 = Is simplified no combine like terms by adding coefficients 2a^2-6a-20 = Answer 2. 2w – 3 + 3(w – 4) – 5(w – 6)= The given expression 2w - 3 + 3(w - 4) - 5(w - 6) = Distributive property removes parentheses 2w - 3 + 3w - 12 - 5w + 30 = Combine like terms 2w + 3w - 5w - 3 -12 + 30 = Combine like terms by adding coefficients and add and subtract to get sum. Use the commutative...

Words: 509 - Pages: 3