Free Essay

Math

In:

Submitted By selenalena
Words 1903
Pages 8
Selena Matthews
Homework 7
August 11, 2013

6. What is the size of the largest induced Kn in Figure 6.9?
A complete graph on n vertices is Kn n vertices v1, v2, . . . , vn with an edge for each pair of distinct vertices

a. P3 no pair of vertices
b. not complete
c. not complete
d. K2 or C2
e. C5 not complete

Largest induced Kn is K2.

10. What can you say about a five vertex simple graph in which every vertex has degree four?

Five vertices *4 degrees = 20 edges

V = {1, 2, 3, 4, 5}
E = {(1,2), (1,3), (1,4), (1,5), (2,1), (2,3), (2,4), (2,5),
3,1, 3,2, 3,4, 3,5, 4,1, 4,2, 4,3, 4,5,
(5,1), (5,2), (5,3), (5,4)} I can say:
1. The simple graph is complete because all pairs of end points are joined by an edge.
2. I can say that it is not a tree because it contains a cycle.
3. That it is connected but undirected.
4. Adding all the degrees 4+4+4+4+4 for odd vertices and even degrees provides an even amount of edges =20.

14. Are there graphs with v vertices and v-1 edges and no cycles that are not trees? No
Give a proof to justify your answer.

Let G be a graph with v vertices and e edges
Let G1, G2, G3…,Gk be G's connected components
Let vi be the number of vertices of Gi
Let ei be the number of edges of Gi

Prove G has e = v-1 and no cycles but is not a tree
A tree T has v vertices and v-1 edges
T=(V,E)
v=V and vi=Vi v-1=E ei=E∩Vi2
Induce that ei=vi-1. A tree has v vertices and v-1 edges. vi=v-1 so E=ei+k= (vi-1)+k=(vi)=v-1

There must exist an i such that ei=vi but with no cycles vi=v and ei=e≥vi

Gi=ei > v-1
So a graph with connected components without cycles and without being a tree has more than v-1 edges.

2. Show that a finite graph is connected if and only if it has a spanning tree.

If G is a simple graph, then T is a spanning tree of G.
T is a subgraph of G and is a tree and contains every vertex V of G.
Let G be a graph containing a spanning tree (T).
T = a connected graph with vertex set V(G).
V(G) contains G which is a spanning sub graph that is connected. Every pair of vertices in G are connected because there is a path between them and T.

If G is connected, it has a spanning tree.
If G is a tree then it must have a spanning tree.
If G is connected and not a tree, then it has a cycle.
If G is a simple connected graph then it has no simple circuits and G is a spanning tree.
Remove edges from G until you cannot remove anymore without it being disconnected.
An edge is a cut-edge if and only if it can’t be removed without the graph becoming disconnected.

V(G) is still connected.
V(G) has no cycles.
A connected graph with no cycles is a tree.
Thus, G is connected and has a spanning tree.
Therefore, a graph is connected if and only if it has a spanning tree.

4. Draw all rooted trees on 6 vertices with four leaf vertices. If you would like to label the vertices (as we did in the graph in Figure 6.10), that is fine, but don’t give two different ways of labeling or drawing the same tree.

6. Create a breadth first search tree centered at vertex 12 for the graph in Figure 6.8 and use it to compute the distance of each vertex from vertex 12. Give the breadth first number for each vertex.

12 is the source d(12)=0 Q=12 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | d | ∞ | ∞ | ∞ | ∞ | ∞ | ∞ | ∞ | ∞ | ∞ | ∞ | ∞ | 0 | π | / | / | / | / | / | / | / | / | / | / | / | / | I1: dequeue 12 enqueue 1, 2, 9 & 11 | d | 1 | 1 | ∞ | ∞ | ∞ | ∞ | ∞ | ∞ | 1 | ∞ | 1 | 0 | π | 12 | 12 | / | / | / | / | / | / | 12 | / | 12 | / | I2: dequeue 1, 2, 9 & 11: enqueue 3, 7, 8, &10 | d | 1 | 1 | 2 | ∞ | ∞ | ∞ | 2 | 2 | 1 | 2 | 1 | 0 | π | 12 | 12 | 2 | / | / | / | 11 | 9 | 12 | 2 | 12 | / | I3: dequeue 3, 7, 8, &10 enqueue 4,5,6 | d | 1 | 1 | 2 | 3 | 3 | 3 | 2 | 2 | 1 | 2 | 1 | 0 | π | 12 | 12 | 2 | 3 | 7 | 8 | 11 | 9 | 12 | 2 | 12 | / |
Queue: 12-1-2-9-11-3-10-7-8-4-5-6
1. (12,1)
2. (12,2)
3. (12,2,3) 4. (12,2,3,4)
5. (12,11,7,5)
6. (12,9,8,6)
7. (12,11,7)
8. (12,9,8)
9. (12,9)
10. (12,2,10)
11. (12,11)

8. The depth of a vertex in a rooted tree is defined to be the number of edges on the (unique) path to the root. The height of a rooted tree is the maximum of the depths of its vertices. A binary tree is complete if it is full and all its leaves have the same depth. How many vertices does a complete binary tree of height 1 have? height 2? height d? (Proof required for height d.)

1. Let T be a complete binary tree with a height of 1. If T has a height of 1 then T has 2h+1 – 1 vertices=21+1 – 1=22 – 1=4-1=3 total vertices 2. Let T be a complete binary tree with a height of 2. If T has a height of 2 then T has 2h+1 – 1 vertices=22+1 – 1=23 – 1=8-1=7 total vertices 3. Let T be a complete binary tree and let h be the height of T or number of levels. Find how many total vertices does T with height d have? If T has a height of d then the amount of leaves at height d is 2d.
Let d=0 then 20=1 let d=1 then 21=2
Let d=2 then 22=4
Total levels = 1+2+4… or
T=20level 0+21level 1+22level 2… +2d-1level d T=20level 0+21level 1+22level 2… +2d-1level d proves to be a geometric series for 2d-1+2d=2d+1-1 Height 0 = 1 Height 1 = 2 + 1 = 3 Height 2 = 4 +2 +1 = 7 Level d = 2d+1-1
Let d=0 then 20+1-1=21-1=2-1=1
Let d=1 then 21+1-1=22-1=4-1=3 Height d: 2d+1 – 1=2d+1 – 1

T=2d+1-12-1=2d+1-11 =2d+1-1 total vertices for T with a height of d.

10. As defined in problem 8 a binary tree is complete if it is full and all its leaves have the same depth. A vertex that is not a leaf vertex is called an internal vertex. What is the relationship between the number I on the internal vertices and the number L of leaf vertices in a complete binary?

Let V be vertices, I be internal vertices and L be leaves.
Base case is T with 1 vertex. A tree of height h has L=2h leaves.
A tree with 1 vertex has a height of 0. L=20=L=1
A tree with 1 vertex and height of 0 has 2h-12-1=20-12-1=0
Base case of T with 1 vertex has 1L and 0I.

Assume it is true for all T and T consists of T1 and T2 and leaves of T1 and T2 consists of L1 and L2 and internal vertices of I1 and I2.
Let L(T) be the total leaves of T and I(T) be the total internal vertices of T.
LT=L(T1)+L(T2) and IT=I(T1)+IT2+1
Induction:
LT1=I(T1)+1 and LT2=I(T2)+1
LT=I(T1)+1+IT2+1=I(T1)+IT2+2
LT=IT+1
The relationship between the number I internal vertices and the number L leaf vertices in a complete binary is
L(T) the number of leaves of a complete binary tree T, is 1 more than I(T), the number of internal vertices of T.

2. For each graph in figure 6.25, either explain where the graph does not have a Eulerian trail or find it. a. has more than 3 vertices with a odd degree which prevents a trail from being completed using all edges at least once. b. (1,2)(2,3)(3,4)(4,2)(2,5)(5,4)(4,1)(1,5) c. (1,4)(4,5)(5,3)(3,2)(2,5)(5,1)(1,2) d. has more than 3 vertices with a odd degree which prevents a trail from being completed using all edges at least once.

6. The hypercube graph Qn has it’s vertex set the n – tuples of zeros and ones.
Two of these vertices are adjacent if and only if they are different in one position. The name hypercube comes from the fact that Q3 can be drawn in 3-D space as a cube.
For what values of n is the hypercube Qn Eulerian?

The n-dimensional hypercube Qn has 2n vertices and n2{n−1} edges.
Let n be 3 for Qn and 2n=23=8 vertices n2(n-1)=323-1=12edges
8/4= 2Q2 12/4=3 edges per vertex.
Q3 is not Eulerian.

Let n+1 be an even number 4 for Qn. Q3+1=4
2n=24=16 vertices n2(n-1)=424-1=32edges
Q4 is Eulerian.

A graph is Eulerian if and only if it is connected and every vertex has even degree.
Euler’s Formula. A hypercube with even values for n of Qn is Eulerian.

8. Find an example of a graph that has a Hamiltonian cycle but no Eulerian circuit and a graph that has a Eulerian circuit but no Hamiltonian cycle.

Hamiltonian cycle but no Eulerian circuit

Eulerian circuit but no Hamiltonian cycle

12. Which of the graph in figure 6.26 satisfy the hypotheses of Dirac’s theorem?
Every graph G with at least 3 vertices and at least a degree of v/2 has a Hamilton cycle.
a. 5 ≥ 3 true minimum degree 3(G) ≥ 5/2 true
b. 5 ≥ 3 true minimum degree 2(G) ≥ 5/2 not true
c. 9 ≥ 3 true minimum degree 2(G) ≥ 9/2 not true
d. 9 ≥ 3 true minimum degree 2(G) ≥ 9/2 not true a satisfies Dirac’s theorem.

Of Ore’s theorem?
Every graph G with n ≥ 3 vertices such that the sum of x,y of nonadjacent vertices is at least v.
a. v=5 true 3+3=6 true
b. v=5 true 2+3=5 true
c. v=9 true 2+2=4 not true
d. v=9 true 2+3=5 not true a and b satisfy Ore’s theorem.

Which have Hamiltonian cycles?

a. has a Hamiltonian cycle
b. has a Hamiltonian cycle

Similar Documents

Free Essay

Math

...and solve problems in everyday life”. In my everyday life I have to keep the balance in my check book, pay bills, take care of kids, run my house, cook, clean etc. With cooking I am using math, measuring how much food to make for four people (I still haven’t mastered that one). With bills I am using math, how much each company gets, to how much money I have to spare (which these days is not much). In my everyday life I do use some form of a math. It might not be how I was taught, but I have learned to adapt to my surroundings and do math how I know it be used, the basic ways, none of that fancy stuff. For my weakest ability I would say I fall into “Confidence with Mathematics”. Math has never been one of my favorite subjects to learn. It is like my brain knows I have to learn it, but it puts up a wall and doesn’t allow the information to stay in there. The handout “The Case for Quantitative Literacy” states I should be at ease with applying quantitative methods, and comfortable with quantitative ideas. To be honest this class scares the crap out of me, and I am worried I won’t do well in this class. The handout also says confidence is the opposite of “Math Anxiety”, well I can assure you I have plenty of anxiety right now with this class. I have never been a confident person with math, I guess I doubt my abilities, because once I get over my fears and anxiety I do fine. I just have to mentally get myself there and usually it’s towards the end of the class. There are several...

Words: 418 - Pages: 2

Premium Essay

Math

...solutions. If you have a graphing calculator, this method is the quickest. If you don't have a calculator, it can be difficult to graph the equation. Completing the square: This is probably the most difficult method. I find it hardest to remember how to apply this method. Since the quadratic formula was derived from this method, I don't think there is a good reason to use completing the square when you have the formula Factoring: this is probably the easiest method for solving an equation with integer solutions. If you can see how to split up the original equation into its factor pair, this is the quickest and allows you to solve the problem in one step. Week 9 capstone part 1 Has the content in this course allowed you to think of math as a useful tool? If so, how? What concepts...

Words: 662 - Pages: 3

Premium Essay

Math

...This article is about the study of topics, such as quantity and structure. For other uses, see Mathematics (disambiguation). "Math" redirects here. For other uses, see Math (disambiguation). Euclid (holding calipers), Greek mathematician, 3rd century BC, as imagined by Raphael in this detail from The School of Athens.[1] Mathematics is the study of topics such as quantity (numbers),[2] structure,[3] space,[2] and change.[4][5][6] There is a range of views among mathematicians and philosophers as to the exact scope and definition of mathematics.[7][8] Mathematicians seek out patterns[9][10] and use them to formulate new conjectures. Mathematicians resolve the truth or falsity of conjectures by mathematical proof. When mathematical structures are good models of real phenomena, then mathematical reasoning can provide insight or predictions about nature. Through the use of abstraction and logic, mathematics developed from counting, calculation, measurement, and the systematic study of the shapes and motions of physical objects. Practical mathematics has been a human activity for as far back as written records exist. The research required to solve mathematical problems can take years or even centuries of sustained inquiry. Rigorous arguments first appeared in Greek mathematics, most notably in Euclid's Elements. Since the pioneering work of Giuseppe Peano (1858–1932), David Hilbert (1862–1943), and others on axiomatic systems in the late 19th century, it has become customary...

Words: 634 - Pages: 3

Premium Essay

Math

...Diana Garza 1-16-12 Reflection The ideas Stein presents on problem saving and just math in general are that everyone has a different way of saving their own math problems. For explains when you’re doing a math problem you submit all kinds of different numbers into a data or formula till something works or maybe it’s impossible to come up with a solution. For math in general he talks about how math is so big and its due in large measure to the wide variety of situations how it can sit for a long time without being unexamined. Waiting for someone comes along to find a totally unexpected use for it. Just like has work he couldn’t figure it out and someone else found a use for it and now everyone uses it for their banking account. For myself this made me think about how math isn’t always going to have a solution. To any math problem I come across have to come with a clear mind and ready to understand it carefully. If I don’t understand or having hard time taking a small break will help a lot. The guidelines for problem solving will help me a lot to take it step by step instead of trying to do it all at once. Just like the introduction said the impossible takes forever. The things that surprised me are that I didn’t realize how much math can be used in music and how someone who was trying to find something else came to the discovery that he find toe. What may people were trying to find before...

Words: 270 - Pages: 2

Free Essay

Math

...Sample Exam 2 - MATH 321 Problem 1. Change the order of integration and evaluate. (a) (b) 2 0 1 0 1 (x y/2 + y)2 dxdy. + y 3 x) dxdy. 1 0 0 x 0 y 1 (x2 y 1/2 Problem 2. (a) Sketch the region for the integral f (x, y, z) dzdydx. (b) Write the integral with the integration order dxdydz. THE FUNCTION f IS NOT GIVEN, SO THAT NO EVALUATION IS REQUIRED. Problem 3. Evaluate e−x −y dxdy, where B consists of points B (x, y) satisfying x2 + y 2 ≤ 1 and y ≤ 0. − Problem 4. (a) Compute the integral of f along the path → if c − f (x, y, z) = x + y + yz and →(t) = (sin t, cos t, t), 0 ≤ t ≤ 2π. c → − → − → − (b) Find the work done by the force F (x, y) = (x2 − y 2 ) i + 2xy j in moving a particle counterclockwise around the square with corners (0, 0), (a, 0), (a, a), (0, a), a > 0. Problem 5. (a) Compute the integral of z 2 over the surface of the unit sphere. → → − − → − → − − F · d S , where F (x, y, z) = (x, y, −y) and S is → (b) Calculate S the cylindrical surface defined by x2 + y 2 = 1, 0 ≤ z ≤ 1, with normal pointing out of the cylinder. → − Problem 6. Let S be an oriented surface and C a closed curve → − bounding S . Verify the equality → − → − → → − − ( × F ) · dS = F ·ds − → → − if F is a gradient field. S C 2 2 1...

Words: 254 - Pages: 2

Premium Essay

Math

...say whether I was able to learn how to be a better teacher and what the teacher did that I could possibly use in the future. While analyzing and going through the process of this assignment it is helping realize how to become a better teacher as well. I would also like to get more comfortable and experience on using this template of the paper. Memories Of A Teacher My teacher, Mr. G, used many different instructional techniques and approaches to his lessons. Mr. G had taught me math for three years in a row, so I think that I have a good grasp on his approaches to the lessons that he would teach. He would assign many homework assignments, as well as in-class assignments, which helped me and other students understand and get practice with the lesson that we were learning. I think that with math having a lot of homework is a good thing. In my mind, the only way to learn how to do math is plenty of practice. The more you practice, the easier it will be. Mr. G would also have the students do some math problems on the chalk board or smart board to show the class and go over the corrections with the whole class so that everyone would understand the problem. Playing “racing” games also helped and added fun to the class. With the “racing” games, the students would get into groups and have to take...

Words: 1027 - Pages: 5

Free Essay

Math

...STAT2011 Statistical Models sydney.edu.au/science/maths/stat2011 Semester 1, 2014 Computer Exercise Weeks 1 Due by the end of your week 2 session Last compiled: March 11, 2014 Username: mac 1. Below appears the code to generate a single sample of size 4000 from the population {1, 2, 3, 4, 5, 6}. form it into a 1000-by-4 matrix and then find the minimum of each row: > rolls1 table(rolls1) rolls1 1 2 3 4 5 6 703 625 679 662 672 659 2. Next we form this 4000-long vector into a 1000-by-4 matrix: > four.rolls=matrix(rolls1,ncol=4,nrow=1000) 3. Next we find the minimum of each row: > min.roll=apply(four.rolls,1,min) 4. Finally we count how many times the minimum of the 4 rolls was a 1: > sum(min.roll==1) [1] 549 5. (a) First simulate 48,000 rolls: > rolls2=sample(x=c(1,2,3,4,5,6),size=48000,replace=TRUE) > table(rolls2) rolls2 1 2 3 4 5 6 8166 8027 8068 7868 7912 7959 (b) Next we form this into a 2-column matrix (thus with 24,000 rows): > two.rolls=matrix(rolls2,nrow=24000,ncol=2) (c) Here we compute the sum of each (2-roll) row: > sum.rolls=apply(two.rolls,1,sum) > table(sum.rolls) sum.rolls 2 3 4 5 6 7 8 9 10 11 742 1339 2006 2570 3409 4013 3423 2651 1913 1291 1 12 643 Note table() gives us the frequency table for the 24,000 row sums. (d) Next we form the vector of sums into a 24-row matrix (thus with 1,000 columns): > twodozen=matrix(sum.rolls,nrow=24,ncol=1000,byrow=TRUE) (e) To find the 1,000 column minima use > min.pair=apply(twodozen,2,min) (f) Finally compute the...

Words: 597 - Pages: 3

Premium Essay

Math

...Jasmine Petersen Dr. Abdeljabbar MAT 1111 April 23, 2014 Algebra is one of the most important subjects someone can learn. It is a subject that transfers into daily life. A lot of people do not realize that they are using algebra. Algebra can be anything from calculating the amount of money you’ve spent on your grocery shopping, designing structural plans for a building, and keeping track of the calories you have in your diet. Our professor told us that in every subject, we use math. My major is chemistry and mathematics is used widely in chemistry as well as all other sciences. Mathematical calculations are absolutely necessary to explore important concepts in chemistry. You’ll need to convert things from one unit to another. For example, you need to convert 12 inches to feet. Also, we use simple arithmetic to balance equations. A lot of things I’ve had learned from this course and one of them was that we use Math for everyday life. I’ve also learned many ways how to solve equations such as linear, quadratic, exponential, and logarithmic equations. All the material that we did learn was all easy to learn and understand. I believe that the instructor did a good job explaining on how to solve problems. If my friend was asking me how to determine the differences between the equation of the ellipse and the equation of the hyperbola, I would first give he or she the definition of the two words ellipse and hyperbola. An ellipse is a set of all points in a plane such that the sum...

Words: 623 - Pages: 3

Premium Essay

Math

...Math is used everyday – adding the cost of the groceries before checkout, totaling up the monthly bills, estimating the distance and time a car ride is to a place a person has not been. The problems worked this week have showed how math works in the real world. This paper will show how two math problems from chapter five real world applications numbers 35 and 37 worked out. Number 35 A person hired a firm to build a CB radio tower. The firm charges $100 for labor for the first 10 feet. After that, the cost of labor for each succeeding 10 feet is $25 more than the preceding 10 feet. That is, the nest 10 feet will cost $125; the next 10 feet will cost $150, etc. How much will it cost to build a 90-foot tower? Solving this problem involves the arithmetic sequence. The arithmetic sequence is a sequence of numbers in which each succeeding term differs from the preceding term by the same amount (Bluman, 2011). n = number of terms altogether n = 9 d = the common differences d = 25 ª1 = first term ª1 = 100 ªn = last term ª2 = ª9 The formula used to solve this problem came from the book page 222. ªn = ª1 + (n -1)d ª9 = 100 + (9-1)25 ª9 = 100 + (8)25 ...

Words: 540 - Pages: 3

Free Essay

Math

...A | Course Title & Number | Calculus II: MTH104 | B | Pre/Co-requisite(s) | Pre-requisite: MTH103 (Calculus I) | C | Number of credits | 3 | D | Faculty Name | Dr. Ghada Alobaidi | E | Term/ Year | Fall 2014 | F | Sections | Course | Days | Time | Location | MTH104.02 MTH104.04MTH104.06 | UTR UTRMW | 9:00-9:50 10:00-10:50 8:00-9:15 | PHY 113NAB 007NAB010 | | | | | | G | Instructor Information | Instructor | Office | Telephone | Email | Ghada Alobaidi | NAB 249 | 06 515 2754 | galobaidi@aus.edu | Office Hours: UT: 11:00 – 12:30 , R: 11:00 – 12:00 or by appointment. | H | Course Description from Catalog | Covers techniques of integration, improper integrals, sequences, infinite series, power series, parameterized curves, polar coordinates, integration in polar coordinates and complex numbers. | I | Course Learning Outcomes | Upon completion of the course, students will be able to: * Read, analyze, and apply to problems, written material related to the study of calculus. * Use the appropriate technique(s) – including integration by parts, trigonometric substitutions, partial fractions, etc. to integrate algebraic, logarithmic, exponential, trigonometric, and composite functions. * Evaluate improper integrals and test them for convergence. * Compute arc length and surface area of revolution of graphs and parametric curves. * Graph polar curves and find enclosed area and arc length. * Apply theorems about limits of...

Words: 1366 - Pages: 6

Premium Essay

Math

...you come to geometry, your opinion may vary. This class introduces a lot of new topics, which can be challenging, and take lots of practice outside of school if you do not pay attention or do your math homework. I strongly advise you to do your math homework everyday, not for just a grade, but it also helps you when it comes time for quizzes and tests. She rarely checks homework, but when she does, she will not tell you. It is also a great review for tests and quizzes. Ms.Hull’s tests and quizzes are not the easiest things you will take. The quizzes take new concepts and apply to the quiz. Also, her tests are usually always hard. It is a good idea to practice new concepts and review old ones from previous units, so you can get a good grade on the tests. I also advise you to be organized throughout the year. Organization is the key to success especially in math class. Tool kits are an extremely helpful resource to use. There are going to be a lot of conjectures and theorems that will be new, and it would be hard to just memorize them. My overall geometry year was not exactly the way I hoped it would turn out. It was extremely had, and it moves at a very quick pace, so keeping up was hard for me personally. If I could have done something differently, it would have been practicing math more often. Each concept was hard, and I did not have anytime to review it, because I have a lot of honors classes which require a lot of work too. The key to being successful in this course...

Words: 361 - Pages: 2

Free Essay

Math

...|7|SURVEY OF MATHEMATICS FALL 2015 | |8| | |8| | |8| | |8| | | |  | | |Instructor  | | |Gary F. Melendy | | | | | |Title  | | |Instructor ...

Words: 1789 - Pages: 8

Free Essay

Math

...Math 1P05 Assignment #1 Due: September 26 Questions 3, 4, 6, 7, 11 and 12 require some Maple work. 1. Solve the following inequalities: a) b) c) 2. Appendix D #72 3. Consider the functions and . a) Use a Maple graph to estimate the largest value of at which the graphs intersect. Hand in a graph that clearly shows this intersection. b) Use Maple to help you find all solutions of the equation. 4. Consider the function. a) Find the domain of. b) Find and its domain. What is the range of? c) To check your result in b), plot and the line on the same set of axes. (Hint: To get a nice graph, choose a plotting range for bothand.) Be sure to label each curve. 5. Section 1.6 #62 6. Section 2.1 #4. In d), use Maple to plot the curve and the tangent line. Draw the secant lines by hand on your Maple graph. 7. Section 2.2 #24. Use Maple to plot the function. 8. Section 2.2 #36 9. Section 2.3 #14 10. Section 2.3 #26 11. Section 2.3 #34 12. Section 2.3 #36 Recommended Problems Appendix A all odd-numbered exercises 1-37, 47-55 Appendix B all odd-numbered exercises 21-35 Appendix D all odd-numbered exercises 23-33, 65-71 Section 1.5 #19, 21 Section 1.6 all odd-numbered exercises 15-25, 35-41, 51, 53 Section 2.1 #3, 5, 7 Section 2.2 all odd-numbered exercises 5-9, 15-25, 29-37 Section 2.3 all odd-numbered exercises...

Words: 271 - Pages: 2

Premium Essay

Math

...find the national average cost of food for an individual, as well as for a family of 4 for a given month. http://www.cnpp.usda.gov/sites/default/files/usda_food_plans_cost_of_food/CostofFoodJan2012.pdf 5. Find a website for your local city government. http://www.usa.gov/Agencies/Local.shtml 6. Find the website for your favorite sports team (state what that team is as well by the link). http://blackhawks.nhl.com/ (Chicago Blackhawks) 7. Many of us do not realize how often we use math in our daily lives. Many of us believe that math is learned in classes, and often forgotten, as we do not practice it in the real world. Truth is, we actually use math every day, all of the time. Math is used everywhere, in each of our lives. Math does not always need to be thought of as rocket science. Math is such a large part of our lives, we do not even notice we are computing problems in our lives! For example, if one were interested in baking, one must understand that math is involved. One may ask, “How is math involved with cooking?” Fractions are needed to bake an item. A real world problem for baking could be as such: Heena is baking a cake that requires two and one-half cups of flour. Heena poured four and one-sixth cups of flour into a bowl. How much flour should Heena take out of the bowl? In this scenario of a real world problem, we have fractions, and subtraction of fractions, since Heena has added four and one-sixth cups of flour, rather than the needed...

Words: 665 - Pages: 3

Free Essay

Math

... h(x)= 7-x/3 First we need to compute (f-h)(4) (f*h)(4)=f(4)-h(4), each function can be done separately f(4)=2(4)+5 f(4)=8+5 f(4)=13 H h(4)=(7-4)/3 same process as above h(4)=3/3=h(4)=1 (f-h)(4)=13-1 (f-h)(4)=12 this is the solution after substituting and subtracting The next part we need to replace the x in the f function with the g (f*g)(x)=f(g(x)) (f*g)(x)=f(x2-3) (f*g)(x)=2x2-1 is the result Now we need to do the h function (h*g)(x)=h(g(x)) (h*g)(x)=h(x2-3) (h*g)(x)=7-(x2-3) (h*g)(x)=10-x2 end result The inverse function-- f-1(x)=x-5h-1(x)=-(3-7) By doing problems this way it can save a person and a business a lot of time. A lot of people think they don't need math everyday throughout their life, but in all reality people use math almost everyday in life. The more you know the better off your life will...

Words: 261 - Pages: 2