General Certificate of Education January 2008 Advanced Subsidiary Examination

MATHEMATICS Unit Decision 1 Tuesday 15 January 2008

MD01

9.00 am to 10.30 am

For this paper you must have: * an 8-page answer book * the blue AQA booklet of formulae and statistical tables * an insert for use in Questions 2, 4 and 5 (enclosed). You may use a graphics calculator.

Time allowed: 1 hour 30 minutes Instructions Use blue or black ink or ball-point pen. Pencil or coloured pencil should only be used for drawing. Write the information required on the front of your answer book. The Examining Body for this paper is AQA. The Paper Reference is MD01. Answer all questions. Show all necessary working; otherwise marks for method may be lost. The final answer to questions requiring the use of calculators should be given to three significant figures, unless stated otherwise. Fill in the boxes at the top of the insert. *

*

* * *

*

Information The maximum mark for this paper is 75. The marks for questions are shown in brackets. * *

P98343/Jan08/MD01 6/6/6/

MD01

2

Answer all questions.

1 Five people, A, B, C, D and E, are to be matched to five tasks, J , K, L, M and N . The table shows the tasks that each person is able to undertake. Person

Task

A

J, N

B

J, L

C

L, N

D

M, N

E

K, M

(a) Show this information on a bipartite graph.

(2 marks)

(b) Initially, A is matched to task N , B to task J , C to task L, and E to task M. Complete the alternating path D – M ..., from this initial matching, to demonstrate how each person can be matched to a task. (3 marks)

2 [Figure 1, printed on the insert, is provided for use in this question.] The feasible region of a linear programming problem is represented by x þ y 4 30 2x þ y 4 40 y55 x54 y 5 12 x (a) On Figure 1, draw a suitable diagram to represent these inequalities and indicate the feasible region. (5 marks) (b) Use your diagram to find the maximum value of F, on the feasible region, in the case where: (i) F ¼ 3x þ y ;

(2 marks)

(ii) F ¼ x þ 3y .

(2 marks)

P98343/Jan08/MD01

3

3 The diagram shows 10 bus stops, A, B, C, ..., J , in Geneva. The number on each edge represents the distance, in kilometres, between adjacent bus stops. A

2.2

J

B

2.8

3.0

2.9

C

2.1

3.2

I

1.8

D

3.1

3.3

H

2.6

2.5

1.2

G

2.7

E

2.4

F

The city council is to connect these bus stops to a computer system which will display waiting times for buses at each of the 10 stops. Cabling is to be laid between some of the bus stops. (a) Use Kruskal’s algorithm, showing the order in which you select the edges, to find a minimum spanning tree for the 10 bus stops. (5 marks) (b) State the minimum length of cabling needed. (c) Draw your minimum spanning tree.

(1 mark) (2 marks)

(d) If Prim’s algorithm, starting from A, had been used to find the minimum spanning tree, state which edge would have been the final edge to complete the minimum spanning tree. (2 marks)

Turn over for the next question

P98343/Jan08/MD01

s

Turn over

4

4 [Figure 2, printed on the insert, is provided for use in this question.] The network shows 11 towns. The times, in minutes, to travel between pairs of towns are indicated on the edges. D

15

16

B

10

15

8

I

E

12

16

16

30

A

10

10

30

K

F

19

10

11

C

5

10

13

J

G

10

12

15

15

H The total of all of the times is 308 minutes. (a)

(i) Use Dijkstra’s algorithm on Figure 2 to find the minimum time to travel from A to K. (6 marks) (ii) State the corresponding route.

(1 mark)

(b) Find the length of an optimum Chinese postman route around the network, starting and finishing at A. (The minimum time to travel from D to H is 40 minutes.) (5 marks) P98343/Jan08/MD01

5

5 [Figure 3, printed on the insert, is provided for use in this question.] (a) James is solving a travelling salesperson problem. (i) He finds the following upper bounds: 43, 40, 43, 41, 55, 43, 43. Write down the best upper bound.

(1 mark)

(ii) James finds the following lower bounds: 33, 40, 33, 38, 33, 38, 38. Write down the best lower bound.

(1 mark)

(b) Karen is solving a different travelling salesperson problem and finds an upper bound of 55 and a lower bound of 45. Write down an interpretation of these results. (1 mark) (c) The diagram below shows roads connecting 4 towns, A, B, C and D. The numbers on the edges represent the lengths of the roads, in kilometres, between adjacent towns. C 18

A

20

35

B 15

D Xiong lives at town A and is to visit each of the other three towns before returning to town A. She wishes to find a route that will minimise her travelling distance. (i) Complete Figure 3, on the insert, to show the shortest distances, in kilometres, between all pairs of towns. (2 marks) (ii) Use the nearest neighbour algorithm on Figure 3 to find an upper bound for the minimum length of a tour of this network that starts and finishes at A. (3 marks) (iii) Hence find the actual route that Xiong would take in order to achieve a tour of the same length as that found in part (c)(ii). (2 marks)

P98343/Jan08/MD01

s

Turn over

6

6 A student is solving cubic equations that have three different positive integer solutions. The algorithm that the student is using is as follows: Line Line Line Line Line Line Line Line Line Line Line Line

10 20 30 40 50 60 70 80 90 100 110 120

Input A, B, C, D Let K ¼ 1 Let N ¼ 0 Let X ¼ K Let Y ¼ AX 3 þ BX 2 þ CX þ D If Y 6¼ 0 then go to Line 100 Print X , “is a solution” Let N ¼ N þ 1 If N ¼ 3 then go to Line 120 Let K ¼ K þ 1 Go to Line 40 End

(a) Trace the algorithm in the case where the input values are: (i) A ¼ 1 , B ¼ 6 , C ¼ 11 and D ¼ 6 ;

(4 marks)

(ii) A ¼ 1 , B ¼ 10 , C ¼ 29 and D ¼ 20 .

(4 marks)

(b) Explain where and why this algorithm will fail if A ¼ 0 .

P98343/Jan08/MD01

(2 marks)

7

7 The numbers 17, 3, 16 and 4 are to be sorted into ascending order. The following four methods are to be compared: bubble sort, shuttle sort, Shell sort and quick sort (with the first number used as the pivot). A student uses each of the four methods and produces the correct solutions below. Each solution shows the order of the numbers after each pass. Solution 1

17 3 3 3

3 17 16 4

16 16 17 16

4 4 4 17

Solution 2

17 16 3

3 3 4

16 17 16

4 4 17

Solution 3

17 3 3 3

3 16 16 4

16 4 4 16

4 17 17 17

Solution 4

17 3 3 3

3 16 4 4

16 4 16 16

4 17 17 17

(a) Write down which of the four solutions is the bubble sort, the shuttle sort, the Shell sort and the quick sort. (3 marks) (b) For each of the four solutions, write down the number of comparisons and swaps (exchanges) on the first pass.

(8 marks)

Turn over for the next question

P98343/Jan08/MD01

s

Turn over

8

8 Each day, a factory makes three types of hinge: basic, standard and luxury. The hinges produced need three different components: type A, type B and type C. Basic hinges need 2 components of type A, 3 components of type B and 1 component of type C. Standard hinges need 4 components of type A, 2 components of type B and 3 components of type C. Luxury hinges need 3 components of type A, 4 components of type B and 5 components of type C. Each day, there are 360 components of type A available, 270 of type B and 450 of type C. Each day, the factory must use at least 720 components in total. Each day, the factory must use at least 40% of the total components as type A. Each day, the factory makes x basic hinges, y standard hinges and z luxury hinges. In addition to x 5 0 , y 5 0 , z 5 0 , find five inequalities, each involving x, y and z, which must be satisfied. Simplify each inequality where possible. (8 marks)

END OF QUESTIONS

Copyright Ó 2008 AQA and its licensors. All rights reserved.

P98343/Jan08/MD01

Surname

Other Names

Centre Number

Candidate Number

Candidate Signature

General Certificate of Education January 2008 Advanced Subsidiary Examination

MATHEMATICS Unit Decision 1

MD01

Insert Insert for use in Questions 2, 4 and 5. Fill in the boxes at the top of this page. Fasten this insert securely to your answer book.

Turn over for Figure 1

P98343/Jan08/MD01 6/6/6/

s

Turn over

2

Figure 1 (for use in Question 2)

y

~

40 –

30 –

20 –

10 –



10

20

30

~



P98343/Jan08/MD01





0– 0

x

3

Figure 2 (for use in Question 4) D

15

10 15

16

B

8

I

E

12

16

16

30

A

10

10

30

K

F

19

10

11

C

5

10

13 G

10

12

15

J

15

H P98343/Jan08/MD01

s

Turn over

4

Figure 3 (for use in Question 5)

A

A



38

D

Copyright Ó 2008 AQA and its licensors. All rights reserved.

P98343/Jan08/MD01

C

D

38



B

C

B





D1 January 2008.pdf

Loading… Page 1. Whoops! There was a problem loading more pages. Retrying... D1 January 2008.pdf. D1 January 2008.pdf. Open. Extract. Open with. Sign In.
Missing:

119KB Sizes 0 Downloads 312 Views

Recommend Documents

D1 Acuna.pdf
presented at the Joint International Conference on Agribusiness and Cooperatives, Davao City, Philippines, 14–16. October. ... river stones etc.). ... FM-M-6040 F.

D1 - Orofino.pdf
associati al telefonino, memorizzati sulla piattaforma proprietaria di cloud computing (i- Cloud). 1 . 1 La piattaforma in questione, occorre segnalare, comprende i ...

Brackets PSAL 2016 D1 Championships_PSAL 2016 D1 CH ...
2016. Traub. 7-1. Tottenville. Champion. BYE. Aninjonov. Midwood. Niyazov. Metro Campus. Bachartzi. RFW. 215. Aninjonov. BYE. Fox. Hunter. 527. Bachartzi.

D1 Cimagala.pdf
regional social marketing campaigns which promote. responsible business practices among industries and which. could possibly answer and help support the ...

D1.pdf
É um dos piores crimes que se podem. cometer. As vítimas são homens, mulheres .... do fogo e, de repente: POP! POP!, eles. estouraram e viraram flocos ... Page 3 of 14. Whoops! There was a problem loading this page. Retrying... D1.pdf. D1.pdf. Ope

D1 STATIKOS.pdf
A. Q1. B. 15327. Page 3 of 30. D1 STATIKOS.pdf. D1 STATIKOS.pdf. Open. Extract. Open with. Sign In. Main menu. Displaying D1 STATIKOS.pdf. Page 1 of 30.

emBRACE-D1-1_LitReview_040412_Final.pdf
There was a problem previewing this document. Retrying... Download. Connect more apps... Try one of the apps below to open or edit this item.

6. D1 komikiak.pdf
There was a problem loading more pages. 6. D1 komikiak.pdf. 6. D1 komikiak.pdf. Open. Extract. Open with. Sign In. Main menu. Displaying 6. D1 komikiak.pdf.

2018-D1-seed.pdf
D Tran, M Schiffer, C Okubo, W Hofstadter. Nat'l HS Rec: 1:27.74 ... 29 St. John Bosco 1:39.49. 30 Marina 1:39.81 ... Displaying 2018-D1-seed.pdf. Page 1 of 22.

P1, D1 social gaming.pdf
“What price happiness? Today a top new title for your game console debuts at $49.99. But as. development costs for some titles continue to climb, change may ...

Lien pasto D1.pdf
Retour sur la pré-rentrée des APS. Placée sous le signe de l'encyclique. Laudato Si', la pré-rentrée a réuni 75 APS. (dont 15 inscrits la veille... peuvent mieux.

D1 Revision renovacion fusion.pdf
There was a problem previewing this document. Retrying... Download. Connect more apps... Try one of the apps below to open or edit this item. D1 Revision ...

2016 PSAL, D1.pdf
Temanov. TF 19-3. 137. Hassan. Fall. Ferrara. Fall. 237. Nunez. 18-2. Ferrara. Fall. 1016. Nunez. 17-2. John Bowne. Champion. BYE. Chung. Francis Lewis. Mineo. Sheepshead Bay. Peng. Stuyvesant High School. 514. Chung. BYE. Hoo. Cardozo. 127. Peng. Fa

P1 M1 D1.pdf
Page 1 of 4. Micky Orchard 25/04/14. Unit 28: P1/M1 (Outlining web architecture and components and explaining. the role of web architecture in website communications). Architecture. ISP (Internet Service Provider): A company that provides an internet

DS Trung tuyen D1.pdf
23 PHAN QUANG ANH 02036429 B00 8.25 8.5 8.2 25.00 Từ 8g00 đến 11g00, ngày 04/08/2017. 24 TRẦN QUANG ĐIỂN 56009867 B00 8 8.75 7.8 25.00 Từ 8g00 đến 11g00, ngày 06/08/2017. 25 NGÔ THÚY KIỀU 52008902 B00 7.75 7.5 8.8 25.00 Từ 8g00 đến 11g00, ngày 06/08/

2017 MHD-d1 Judging.pdf
Kendra Keranen. andAllison Spence. Martin Luther: The Man, the Monk, the. Luther 11 SG-Doc4 1 Ballroom B3 10:50. Page 2 of 2. 2017 MHD-d1 Judging.pdf.

2012 PSAL, D1.pdf
Yaneev Hirsch. Brooklyn Tech. Sultan Crawford. New Utrecht. 7. Adam Gomez. Benjamin Cardozo. Shahzaib Tariq. Francis Lewis. 8. Andy Martinez. Information Technology. Malik Grant. Curtis. 9. Emmanuel Flores. Susan Wagner. Geudy Tavarez. Grand Street.

DS Trung tuyen D1.pdf
Page 1 of 196. DANH SÁCH TRÚNG TUYỂN ĐỢT XÉT TUYỂN I. TRƯỜNG ĐẠI HỌC KHOA HỌC Tá»° NHIÊN. HỘI ĐỒNG TUYỂN SINH ĐH, CĐ 2017. Họ tên Số ...

P1 M1 D1.pdf
Web Hosting Service: A web hosting service is a service that allows individuals to make their website. viewable on the internet all the time. In order for people to ...

D1-Pouchard-Nelson-Lu.pdf
CAM2 (Continuous Analysis of Many CAMeras,) is a research tool for solving. some of problems mentioned above: it is a single site through which the data from ...

6'r.,.d1 21:.9.:..3.99.9
.6'r.,.d1 21:.9.:..3.99.9 o,loercoo:- 6oJc(olo il.rlcclcm)o o"o o'"q sl m5o1o - mielglagll eerco)Jo . ..... ISSUE REGISTER OF LAPTOP COMPUTER. Name of School.

D1-Pouchard-Nelson-Lu.pdf
University for Big Data and visual analytics. CAM2 has the ability to collect over 60,000 publicly. accessible video feeds from many regions around the world.

Spelling List D1.pdf
Spelling List D19. assistance. business. camera. chocolate. consonant. definite. diamond. interesting. jewellery. Spelling List D20. journalist. listening. mathematics. miniature. mystery. parliament. prisoner. separate. signature. temperature. Spell

Evolving output mediums (D1).pdf
Examples of this would be logo's being printed to vans and movie advertisements being printed to. posters). With the first inkjet printer released in 1988 at around £600, they have been steadily. improving in quality (Dots per image rising) ever sin