Searching for loci using new technology in teacher s education

Size: px
Start display at page:

Download "Searching for loci using new technology in teacher s education"

Transcription

1 Searching for loci using new technology in teacher s education Pavel Pech University of South Bohemia, Czech Republic

2 Outline of the talk: Introduction Command Locus Problems 1,2 Command LocusEquation Problems 3,4,5 Pilot test Conclusions

3 Introduction Roughly spoken a locus is a set of points subject to some geometric constraints. Searching for geometric loci belongs to traditional part of mathematics school curricula all over the world. This topic is generally considered to be quite difficult for students, despite many well known loci around us, such as lines, circles or conics. Nowadays new computational technologies substantially facilitate investigation of loci, especially in a plane.

4 Command Locus Dynamic geometry software such as Cabri, GeoGebra, Sketchpad and others offer several methods how to describe the locus. The use of this software enables to draw the desired locus and mostly to obtain its locus equation. The tool Locus belongs to one of traditional functions of dynamic geometry systems. To its application we need two points. The first point is a mover, the point which usually moves along a certain object. The second point - a tracer - is somehow dependent on the mover and draws the sought trajectory. The command Locus is very simple and useful, we can use it at all types of schools.

5 Problem 1 Let ABC be a triangle with a base AB and a vertex C on a given line k. Find the locus of the orthocenter H of ABC when C moves along the line k. Using the command Locus, first clicking on the tracer H and then on the mover C, we get the following curve.

6 What is it? Some students say: It is a parabola. Another students say: It is a hyperbola. Or it is neither parabola nor hyperbola? What is the solution? We ll search for the locus equation.

7 Introduce a rectangular coordinate system such that A = [0, 0], B = [1, 0], C = [u, v], H = [p, q] and let k be an arbitrary line k : ax + by + c = 0.

8 To describe the orthocenter H it holds: (H C) (B A) h 1 := p u = 0, (H A) (C B) h 2 := p(u 1) + qv = 0. Further C k h 3 := au + bv + c = 0.

9 We get the system of three equations h 1 = 0, h 2 = 0, h 3 = 0 in variables u, v, p, q, a, b, c. To find the locus of H = [p, q] we eliminate variables u, v in the system h 1 = 0, h 2 = 0, h 3 = 0 to obtain a relation in p, q which depends only on a, b, c. In the program CoCoA 1 we enter Use R::=Q[a,b,c,u,v,p,q]; I:=Ideal(au+bv+c,p-u,(u-1)p+vq); Elim(u..v,I); and acquire the equation κ : bp 2 apq bp cq = 0. 1 Program CoCoA is freely distributed at

10 Suppose that (a, b) (0, 0) since in this case the line k is not defined. Then bp 2 apq bp cq = 0. is the equation of the conic. The cases k AB, A k or B k lead to singular conics which consist of two intersecting lines which are not depicted. Considering regular conics we get two cases:

11 1. If k AB the locus is a parabola with the vertex (1/2, b/(4c)) and the parameter c/(2b).

12 2. If k AB we obtain a hyperbola centered at ( c/a, b(a + 2c)/a 2 ) with one asymptote perpendicular to AB and the second asymptote perpendicular to the line k.

13 Opposite implication (which is often neglected at schools). Suppose that κ is regular and let H κ. We are to show that then C k or equivalently h 3 = 0. If we suppose that q 0, then Use R::=Q[a,b,c,u,v,p,q]; J:=Ideal(bpp-apq-bp-cq,p-u,(u-1)p+vq); NF(q(au+bv+c),J); we get NF = 0. Finally, if q = 0 then H = [0, 0] or H = [1, 0] which both obey the locus conditions. Conclusion: If k AB, A / k or B / k then if k AB the locus is the parabola, if k AB the locus is the hyperbola.

14 Problem 2 Let ABC be a triangle with a side AB and a vertex C on a circle c centered at A and radius AB. Determine the locus of the orthocenter H of ABC when C moves along c. Using the command Locus, first clicking on the tracer H and then on the mover C, we get the curve of the third degree which is a strophoid.

15 How to compute it? Let A = (0, 0), B = (a, 0), C = (u, v) and H = (p, q). Then: (H C) (B A) h 1 : p u = 0, (H A) (C B) h 2 : p(u a) + qv = 0. C c h 3 : u 2 + v 2 a 2 = 0. Elimination of u, v in the system h 1 = 0, h 2 = 0, h 3 = 0 gives Use R::=Q[a,p,q,u,v]; I:=Ideal(p-u,p(u-a)+vq,u 2 + v 2 a 2 ); Elim(u..v,I); the equation of the fourth degree which decomposes into the strophoid and line (p 3 ap 2 + aq 2 + pq 2 )(p a) = 0. (1)

16 How is it possible? The problem is hidden in the position when C arrives at B, i.e. u = a, v = 0, and the line BC is not defined. Then the system h 1 = 0, h 2 = 0, h 3 = 0 transforms into one relation which is the line in (1). p a = 0

17 To avoid this we add the condition B C, i.e. ((u a) 2 + v 2 )t 1 = 0, where t is a slack variable, into the system above. Then we get Use R::=[Q[a,p,q,u,v,t]; J:=Ideal(p-u,p(u-a)+vq,u 2 + v 2 a 2, ((u a) 2 + v 2 )t 1); Elim(u..t,J); the only equation κ : p 3 ap 2 + aq 2 + pq 2 = 0. Using the command LocusEquation we still obtain the equation of the fourth degree. Remark: We are able to detect such extraneous points and get rid of them (e.g. if the point H is not uniquely defined) by the Gröbner Cover algorithm (Abánades 2014).

18 Opposite implication. Let H κ and suppose that B C, when the orthocenter is not uniquely defined. We ask whether the vertex C lies in the circumcircle of ABC for a given orthocenter H. Then adding the condition q 0 Use R::=[Q[a,p,q,u,v,t,s]; L:=Ideal(p-u,p(u-a)+vq,p 3 ap 2 + aq 2 + pq 2, ((u a) 2 + v 2 )t 1, q(u 2 + v 2 a 2 )s 1); NF(1,L); to the respective ideal we get NF (1, L) = 0. Conclusion: The locus is the strophoid without the point B = [a, 0].

19 LocusEquation The command Locus cannot be applied to every locus. Problems that we will present further are of this case. To solve them we have to use a more advanced tool LocusEquation which has recently been implemented into GeoGebra version 5. This command brings a new approach in searching for loci. It is based on automated discovery, the part of the theory of automated theorem proving. This tool uses elimination of variables in a system of algebraic equations describing the locus. It returns an implicit equation of the locus.

20 LocusEquation It is well known that the result is the Zariski closure of a projection on the space of local coordinates. This often leads to the situation that instead of a real locus we get the smallest variety which contains, besides the locus, also some extraneous objects not pertaining to it. Before using the command LocusEquation we have to construct in GeoGebra a geometric diagram describing the locus. After constructing the diagram we apply the command LocusEquation which has two parameters.

21 LocusEquation The first one is the thesis T (which must be a Boolean expression), the second one is a free point P whose locus we investigate. The result of LocusEquation [T,P] produces the set V such that if T is true then P V. Several Boolean expressions in the form of commands such as AreCollinear or AreConcyclic are tested in problems which results to curves in the plane. By searching for loci we apply Gröbner bases method using software CoCoA.

22 Problem 3 Determine the locus of a point P such that its reflections K, L, M in the sides of a given triangle ABC are collinear.

23 It is obvious that in this case the command Locus cannot be applied. But the command LocusEquation solves the problem. Procedure determining the locus is following: 1. First construct a geometric diagram Construct a triangle ABC. Choose an arbitrary point P. Construct reflections K, L, M of the point P in the sides AB, BC and CA. 2. Enter the command LocusEquation[AreCollinear[K,L,M],P].

24 Besides the graph of the searched locus one also gets its equation in given Cartesian coordinates x 2 + y 2 5x y = 0. We see that the locus is the circumcircle of ABC.

25 This problem is related to the Simson Wallace theorem, where reflections of a point P in the sides of ABC are replaced by the feet of perpendiculars from P onto the triangle sides. Note that the line passing through K, L, M passes also through the orthocenter H of the triangle (blue) and is parallel to the Simson line (green).

26 Which way does the computer proceed? Let s show how we arrive at the solution the circumcircle of ABC using the theory of automated theorem proving. Let the coordinates be chosen such that A = [0, 0], B = [a, 0], C = [u, v], P = [p, q], K = [k 1, k 2 ], L = [l 1, l 2 ], M = [m 1, m 2 ]. Suppose that the points K, L, M are collinear.

27 Then: PK BC h 1 := (p k 1 )(u a) + (q k 2 )v = 0, K BC h 2 := 2av + u(q + k 2 ) v(p + k 1 ) a(q + k 2 ) = 0, PL CA h 3 := (p l 1 )u + (q l 2 )v = 0, L CA h 4 := (p + l 1 )v (q + l 2 )u = 0, PM AB h 5 := p m 1 = 0, M AB h 6 := q + m 2 = 0, K, L, M are collinear h 7 := k 1 l 2 + l 1 m 2 + k 2 m 1 l 2 m 1 k 1 m 2 k 2 l 1 = 0.

28 After eliminating variables k 1, k 2, l 1, l 2, m 1, m 2 from the system above we get av 2 M = 0, where M = vp 2 + vq 2 avp + (au u 2 v 2 )q. If a 0 and v 0, i.e. if A B and A, B, C are not collinear, then the equation M = 0 represents the circumcircle of ABC. This can be easily verified by substituting coordinates of the triangle vertices into M = 0.

29 Opposite implication. Let P M. We ask whether then K, L, M are collinear, i.e. h 7 = 0. Suppose that A C and B C, i.e. (u 2 + v 2 )((u a) 2 + v 2 )t 1 = 0, where t is a slack variable. Then Use R::=Q[a,u,v,k[1..2],l[1..2],m[1..2],p,q,t,s]; J:=Ideal(h1,h2,h3,h4,h5,h6,M,(u 2 + v 2 )((u a) 2 + v 2 )t-1,h7*s-1); NF(1,J); NF (1, J) = 0, which means that h 7 = 0. Thus every point P of the circumcircle of ABC satisfies the condition that K, L, M are collinear. Conclusion: If A B, A C, B C and A, B, C are not collinear, then the locus is the (whole) circumcircle of ABC.

30 Problem 4 Determine the locus of a point P such that feet K, L, M, N of perpendiculars from P on the sides of a given quadrilateral ABCD are concyclic.

31 Procedure determining the locus is following: 1. First construct a geometric diagram Draw a quadrilateral ABCD. Choose an arbitrary point P. Construct feet K, L, M, N of perpendiculars from P to the lines AB, BC, CD and DA. 2. Enter the command LocusEquation[AreConcyclic[K,L,M,N],P].

32 An algebraic curve of the third degree is displayed. This curve has many interesting properties.

33 The ellipse inscribed into ABCD. The focal points F 1, F 2 lie on locus curve. The midpoint O of F 1 and F 2 lies on the Newton-Gauss line g.

34 If a quadrilateral ABCD is tangetial or extangential then we get a cubic curve with the singular point.

35 Special case: Determine the locus of a point P such that the feet K, L, M, N of perpendiculars from P onto the sides of a given parallelogram ABCD are concyclic. After execution the command an equilateral hyperbola 3x 2 2xy 3y 2 15x + 15y = 0 including its equation appears.

36 How does computer arrive at this result? Let A = [0, 0], B = [a, 0], C = [u, v], D = [u a, v]. Further denote K = [k 1, k 2 ], L = [l 1, l 2 ], M = [m 1, m 2 ], N = [n 1, n 2 ], P = [p, q]. Suppose that K, L, M, N are concyclic.

37 Then: K AB h 1 := k 2 = 0, L BC h 2 := vl 1 + al 2 av ul 2 = 0, M CD h 3 := vm 1 +uv +(u a)m 2 v(u a) vm 1 um 2 = 0, N DA h 4 := vn 1 (u a)n 2 = 0, PK AB h 5 := p k 1 = 0, PL BC h 6 := (p l 1 )(u a) + (q l 2 )v = 0, PM CD h 7 := p m 1 = 0, PN DA h 8 := (p n 1 )(u a)w + (q n 2 )v = 0,

38 K, L, M, N are concyclic h 9 := k1 2, k 1, 0, 1 l1 2 + l 2 2, l 1, l 2, 1 m1 2 + m2 2, m 1, m 2, 1 n1 2 + n2 2, n 1, n 2, 1 = 0. Eliminating variables k 1, k 2, l 1, l 2, m 1, m 2, n 1, n 2 in the system h 1 = 0, h 2 = 0,..., h 9 = 0, gives If H := vp 2 + 2(a u)pq vq 2 avp + (u 2 + v 2 au)q = 0. (2) u 2 2au + v 2 0 then (2) is the equilateral hyperbola. If u 2 2au + v 2 = 0, (3) then (2) decomposes into two mutually orthogonal lines.

39 The condition (3), together with z = v and w = u a lead to AB = BC = CD = DA, and ABCD is a rhombus. This case is also easy to prove straightforward. For a point P on the diagonal PK PM = PL PN holds. Then from the theorem on the power of a point with respect to a circle concyclicity of the points K, L, M, N follows.

40 Opposite implication. Suppose that P H. We want to know whether h 9 = 0. If we add a 0 to the related ideal then Use R::=Q[a,u,v,w,z,k[1..2],l[1..2],m[1..2],n[1..2],t,p,q]; J:=Ideal(h1,h2,h3,h4,h5,h6,h7,h8,H,a*h9*t-1); NF(1,J); We get NF (1, J) = 0, i.e., the points K, L, M, N are concyclic. Conclusion: If ABCD is a parallelogram with distinct side lengths, then the locus is the equilateral hyperbola. If ABCD is a rhombus, then the locus is formed by its diagonals.

41 Problem 5 Let ABCD be a quadrilateral and K, L, M, N feet of perpendiculars from a point P to the lines AB, BC, CD, DA. Determine the locus of P such that the lines KN and LM are parallel. It is obvious that in this case the command Locus cannot be applied. But the command LocusEquation solves the problem.

42 Procedure determining the locus is following: 1. First construct a geometric diagram Draw a quadrilateral ABCD. Choose an arbitrary point P. Construct feet K, L, M, N of perpendiculars from P to the lines AB, BC, CD and DA. Denote m = KN and n = LM. 2. Enter the command LocusEquation[AreParallel[m,n],P].

43 Besides the graph of the searched locus one also gets its equation in given rectangular coordinates (x 1) 2 + (y 3) 2 = 10. (4) By (4) we see that the locus is a circle.

44 Following questions may arise: Is the solution really the entire circle? Is the solution always a circle (and not another curve)? If the solution is not a circle, for which positions of the vertices A, B, C, D does it happen?

45 Which way does the computer proceed? Let s show how we arrive at the solution the circle using the theory of automated theorem proving. Let the coordinates be chosen such that A = [0, 0], B = [a, 0], C = [u, v], D = [w, z] P = [p, q], K = [k, 0], L = [l 1, l 2 ], M = [m 1, m 2 ] N = [n 1, n 2 ]. Suppose that the lines KN and LM are parallel.

46 Then: PK AB h 1 := p k = 0, L BC h 2 := ul 2 + av al 2 vl 1 = 0, PL BC h 3 := (p l 1 )(u a) + (q l 2 )v = 0, M CD h 4 := um 2 + zm 1 + vw wm 2 uz vm 1 = 0, PM CD h 5 := (p m 1 )(w u) + (q m 2 )(z v) = 0, N DA h 6 := wn 2 zn 1 = 0, PN DA h 7 := (p n 1 )w + (q m 2 )z = 0, KN LM h 8 := (l 1 m 1 )n 2 (l 2 m 2 )(n 1 k) = 0.

47 After eliminating variables k, l 1, l 2, m 1, m 2, n 1, n 2 from the system above we get z(av vw az + uz)s = 0, (5) where S = (p 2 + q 2 )(avw 2uvw + vw 2 auz + u 2 z v 2 z + vz 2 )+ p(u 2 vw + v 3 w avw 2 + au 2 z u 3 z + av 2 z uv 2 z avz 2 ) q(au 2 w u 3 w + av 2 w uv 2 w auw 2 + u 2 w 2 + v 2 w 2 u 2 vz v 3 z auz 2 + u 2 z 2 + v 2 z 2 ). In (5) we can suppose that z 0, av vw az + uz 0, otherwise ABCD degenerates. Thus (5) implies the locus equation of P = [p, q] S = 0.

48 Denote the coefficient at p 2 + q 2 by T = avw 2uvw + vw 2 auz + u 2 z v 2 z + vz 2. If T 0, then (5) is the circle passing through the points A, C and Miguel point H.

49 Now suppose that T = 0. Then S = 0 is the line passing through the vertices A, C. For P AC the angles by B and D are equal.

50 Opposite implication. Does every point P = [p, q] satisfying S = 0 have the required property KN LM? Suppose that P obeys S = 0. We want to show that then KN LM, i.e. h 8 = 0. Using the command Normal Form NF in CoCoA we enter Use R::=Q[a,u,v,w,z,k,l[1..2],m[1..2],n[1..2],p,q,t]; J:=Ideal(h1,h2,h3,h4,h5,h6,h7,S,z(av-vw-az+uz)h8*t-1); NF(1,J); and get NF 0. The answer is negative.

51 Adding the conditions P A and P C, i.e. (p 2 + q 2 )((p u) 2 + (q v) 2 )s 1 = 0 to the ideal J, then Use R::=Q[a,u,v,w,z,k,l[1..2],m[1..2],n[1..2],p,q,t,s]; K:=Ideal(h1,h2,h3,h4,h5,h6,h7,S, (p 2 + q 2 )((p u) 2 + (q v) 2 )s 1,z(av-vw-az+uz)h8*t-1); NF(1,K); we get NF(1,K)=0. This implies that h 8 = 0. Realize that if P = A or P = C, then K = N or L = M and the lines KN or LM are not defined.

52 Conclusion: If the angles by B and D of a quadrilateral ABCD are distinct, then the locus is the circle through the points A, C and the Miquel point H, without A and C. If the angles by B and D are equal, then the locus is the line AC without the points A and C.

53 Pilot test How efficient is the help of DGS by searching for the locus? The aim of the test is to find out how to increase the availability of a synthetic solution if students use DGS software. What are the most frequent causes of failure. Together with my doctor student Jiří Blažek, we have formulated, the following questions:

54 What is the effect of the software on the process of finding the solution? How significant is the help of the software to find relevant properties? What are the causes of failure in solving problems? In more detail: Are students capable of assembling all the important facts related to the solution? Are they able to use these facts for a mathematical proof?

55 The experiment was as follows: Seven students from the University of South Bohemia during the lesson of geometry solved two geometric problems. For half an hour they solved these problems with paper and pencil only. If they were not successful, they wrote down all the hypotheses and ideas they thought to be relevant to the solution and for another half an hour repeated the whole process again, now with the help of GeoGebra. The problems were chosen so that the key empirical facts were not difficult to observe. Let us first outline the two tasks and their idealized solution.

56 1st Problem (Holfeld 1773) Given two mutually orthogonal lines a, b which intersect at the point O. Let points A and M lie on a and b. Circle c with diameter MO intersects the line AM at the point P. What is the locus of P when M moves along the line b?

57 Conventional solution (without aid of software): We focus our attention on the angle MPO and recall Thales theorem: All angles above the diameter of a circle are right. Statement 1: The angle MPO is right.

58 At first, it is not clear whether Statement 1 has a relationship to the solution. The question is: Does this claim have any consequences? Answer: The angle OPA is right. Now one should again apply the Thales theorem, this time in its opposite formulation: Statement 2: The locus of P from which the segment OA is seen at the right angle is a circle with diameter OA.

59 One concludes: Statement 3: The locus of P is a circle with diameter OA, without the point A.

60 In the previous solution several not quite obvious steps and associations require some experience and intuition. Why, for instance, should students focus their attention on the angle OPA when they have no idea that this angle is the key to the solution? And even when they know that this angle is right, they need not recall the Thales theorem. In these cases the experiments in DGS can help and inspire.

61 Solution with GeoGebra support: We first define a set of points P using the Locus command. The locus is a circle with the diameter AO (to be sure that this is a circle and not a curve similar to a circle, we should rather use the LocusEquation command). Notice that the angles MPO and OPA are right and that they remain right even if we change the position of the point M.

62 Let us summarize the experimental facts: The angles MPO and OPA are right. The locus of P is the circle with diameter OA. It is now up to the student to utilize these facts. However, if he/she does not recall the Thales theorem at this stage, the software will not help him/her longer.

63 2nd Problem Two mutually orthogonal lines a, b intersecting at the point O, and a right triangle APB with the angle PBA = 30 are given. The points A and B lie on the lines a and b, the length AB is fixed. Determine the locus of P when A moves along the line a.

64 Conventional solution (without software): By experiments we find out that points A, P, B and O lie on a circle (Thales theorem or the characteristics of a cyclic quadrilateral). Statement 1: Points A, P, B, O lie on the circle.

65 As an implication of the previous statement and according to angle inscribed theorem the angles PBA and POA are equal. In other words, the angle POA is constant and is equal to 30. Statement 2: The angle POA = 30. The point P lies on a straight line forming the angle 30 with the line a.

66 Since PO AB, another requirement is that the distance of the point P to the point O does not exceed AB. Statement 3: The locus of P is the line segment XY of the length 2 AB with center at O and forming the angle 30 with the line a.

67 This example is much more difficult than the first one. For a beginner, it is difficult to imagine that the fact that the quadrilateral APBO is cyclic leads to the solution. GeoGebra can significantly help in the search for the locus.

68 Solution with GeoGebra support Using the Locus command, we find that the locus is a line segment. By measuring we find out that the angle AOP is 30. It immediately follows that the points A, O, B and P are concyclic, which can be easily verified.

69 With the help of DGS we have found the following empirical facts: The points A, P, B, O are concyclic. The angle POA is equal to the angle PBA. The locus is a segment. It is difficult for an inexperienced student to infer the solution from these facts. The solution process is complicated by the fact that the hierarchy of experimentally obtained findings is not clear in advance. For example, the equality POA = PBA leads to concyclicity of the points, or vice versa. In any case the student has to be equipped with the theory. In this case he/she has to know the condition for four points to lie on the same circle and the inscribed angle theorem.

70 Let us recall again that the acquisition of crucial facts is dependent not only on visual perception, but also on the subject s knowledge, experience and thinking.

71 Pilot test results The first question: How big is the increase of right solutions if students can use the software? Without computer, none of the seven students solved any task, with the support of computer the first task was solved by four students, the second one by one: Without computer: 0/14, With the help of DGS: (4 + 1) / 14. Software helped significantly in these cases. It can be assumed that this was also due to the appropriate selection of tasks.

72 The second question: How significant is the help of the software in finding relevant properties? Without computer In the case of the first task without computer, only one student guessed that the locus is a circle. The hypotheses of all the others were wrong, most often the students thought the locus was a parabola. In the second task without computer the students were more successful: five students gave a presumption that proved correct. Four guessed that the locus of P is in a straight line and one student guessed POA = 30.

73 With the help of DGS In the first task with the aid of computer, the locus was determined by everyone, however, only four students came out with the idea to measure the magnitude of the angles MPO and OPB, and they ultimately solved the task. In the second task with computer, several students measured the magnitude of the angle POA, and when asked to experiment, they also found that a circle can by circumscribed around the quadrilateral. We can say that software helps not just with verifying hypotheses, but mainly with discovering completely new facts.

74 The third question: What are the causes of failure in problem solving? The causes of the failure can be divided into two types: Type 1) Insufficient mathematical knowledge - unfamiliarity or inability to apply mathematical theory. In this case, the student will not solve the problem, even though he gets all data needed to solve the problem. Type 2) Insufficient software help The student has sufficient knowledge, but lacks the right intuition or sometimes good luck, and can not find all the facts needed for the solution although he/she has the software support. But if we give him/her a clue, the student is usually able to make a deductive proof himself/herself.

75 The first problem: Three students, who did not solve this problem, did not even realize that the angles MPO and OPB could be significant. They did not measure these angles at all. It can be assumed that their failure can be attributed to unfamiliarity or inability to apply mathematical theory (Thales theorem). The second problem: Out of the six students who did not solve the problem, four found all the empirical facts crucial for solution. Their solution was incomplete because they did not explain why the APBO is a cyclic quadrilateral. It is not easy to decide whether it was because of their unfamiliarity with the mathematical theory or whether they did not realize that they should justify this step precisely.

76 Due to the difficulty of the problem, it is possible that a similar phenomenon will occur frequently: students do not solve the problem because there are too many facts that they cannot logically connect. In other words, they cannot produce deductive evidence because they are not able to link isolated mathematical knowledge. The remaining two students were unable to find all the facts crucial to the solution. Just as in the previous case, the lack of knowledge of mathematical theory could play its role here, it is also not possible to rule out the wrong intuition in estimating which facts could be used to find the solution.

77 Conclusions Realize that the locus equation generated by the command LocusEquation is only the necessary condition for validity of the condition given by a Boolean expression in the command. We strongly recommend, mainly for educational reasons, to implement the verification of the opposite implication which part of the found set of points belongs to the locus into the program in future. This question is often omitted at schools. Otherwise students will consider the procedure given by the command LocusEquation as correct.

78 References M. A. Abánades, F. Botana, A. Montes and T. Recio, An algebraic taxonomy for locus computation in dynamic geometry, Computer-Aided Design 56, (2014). A. Capani, G. Niesi and L. Robbiano, CoCoA, a System for Doing Computations in Commutative Algebra, S. C. Chou, Mechanical Geometry Theorem Proving, D. Reidel Publishing Company, Dordrecht (1987). I. Holfeld: Exercitationes Geometricae, Jesuit College of St. Clement in Prague, E. Roanes-Lozano and E. Roanes-Macías, Automatic Determination of Geometric Loci. 3D-Extension of Simson Steiner Theorem, Lecture Notes in Artificial Intelligence, 1930, AISC 2000, pp (2000). E. V. Shikin, Handbook and Atlas of Curves, CRC Press, Boca

79 Thank you for your attention

Classical Theorems in Plane Geometry 1

Classical Theorems in Plane Geometry 1 BERKELEY MATH CIRCLE 1999 2000 Classical Theorems in Plane Geometry 1 Zvezdelina Stankova-Frenkel UC Berkeley and Mills College Note: All objects in this handout are planar - i.e. they lie in the usual

More information

SMT Power Round Solutions : Poles and Polars

SMT Power Round Solutions : Poles and Polars SMT Power Round Solutions : Poles and Polars February 18, 011 1 Definition and Basic Properties 1 Note that the unit circles are not necessary in the solutions. They just make the graphs look nicer. (1).0

More information

Topic 2 [312 marks] The rectangle ABCD is inscribed in a circle. Sides [AD] and [AB] have lengths

Topic 2 [312 marks] The rectangle ABCD is inscribed in a circle. Sides [AD] and [AB] have lengths Topic 2 [312 marks] 1 The rectangle ABCD is inscribed in a circle Sides [AD] and [AB] have lengths [12 marks] 3 cm and (\9\) cm respectively E is a point on side [AB] such that AE is 3 cm Side [DE] is

More information

Berkeley Math Circle, May

Berkeley Math Circle, May Berkeley Math Circle, May 1-7 2000 COMPLEX NUMBERS IN GEOMETRY ZVEZDELINA STANKOVA FRENKEL, MILLS COLLEGE 1. Let O be a point in the plane of ABC. Points A 1, B 1, C 1 are the images of A, B, C under symmetry

More information

(D) (A) Q.3 To which of the following circles, the line y x + 3 = 0 is normal at the point ? 2 (A) 2

(D) (A) Q.3 To which of the following circles, the line y x + 3 = 0 is normal at the point ? 2 (A) 2 CIRCLE [STRAIGHT OBJECTIVE TYPE] Q. The line x y + = 0 is tangent to the circle at the point (, 5) and the centre of the circles lies on x y = 4. The radius of the circle is (A) 3 5 (B) 5 3 (C) 5 (D) 5

More information

Study of historical geometric problems by means of CAS and DGS

Study of historical geometric problems by means of CAS and DGS Study of historical geometric problems by means of CAS and DGS Roman Hašek, Jan Zahradník Jihočeská univerzita v Českých Budějovicích, Pedagogická fakulta Jeronýmova 10, 371 15 České Budějovice hasek@pf.jcu.cz,

More information

QUESTION BANK ON STRAIGHT LINE AND CIRCLE

QUESTION BANK ON STRAIGHT LINE AND CIRCLE QUESTION BANK ON STRAIGHT LINE AND CIRCLE Select the correct alternative : (Only one is correct) Q. If the lines x + y + = 0 ; 4x + y + 4 = 0 and x + αy + β = 0, where α + β =, are concurrent then α =,

More information

QUESTION BANK ON. CONIC SECTION (Parabola, Ellipse & Hyperbola)

QUESTION BANK ON. CONIC SECTION (Parabola, Ellipse & Hyperbola) QUESTION BANK ON CONIC SECTION (Parabola, Ellipse & Hyperbola) Question bank on Parabola, Ellipse & Hyperbola Select the correct alternative : (Only one is correct) Q. Two mutually perpendicular tangents

More information

Definition: A vector is a directed line segment which represents a displacement from one point P to another point Q.

Definition: A vector is a directed line segment which represents a displacement from one point P to another point Q. THE UNIVERSITY OF NEW SOUTH WALES SCHOOL OF MATHEMATICS AND STATISTICS MATH Algebra Section : - Introduction to Vectors. You may have already met the notion of a vector in physics. There you will have

More information

Advantages and Dangers on Utilizing GeoGebra Automated Reasoning Tools

Advantages and Dangers on Utilizing GeoGebra Automated Reasoning Tools Advantages and Dangers on Utilizing GeoGebra Automated Reasoning Tools Zoltán Kovács The Private University College of Education of the Diocese of Linz zoltan@geogebra.org Abstract GeoGebra Automated Reasoning

More information

Vectors - Applications to Problem Solving

Vectors - Applications to Problem Solving BERKELEY MATH CIRCLE 00-003 Vectors - Applications to Problem Solving Zvezdelina Stankova Mills College& UC Berkeley 1. Well-known Facts (1) Let A 1 and B 1 be the midpoints of the sides BC and AC of ABC.

More information

chapter 1 vector geometry solutions V Consider the parallelogram shown alongside. Which of the following statements are true?

chapter 1 vector geometry solutions V Consider the parallelogram shown alongside. Which of the following statements are true? chapter vector geometry solutions V. Exercise A. For the shape shown, find a single vector which is equal to a)!!! " AB + BC AC b)! AD!!! " + DB AB c)! AC + CD AD d)! BC + CD!!! " + DA BA e) CD!!! " "

More information

Mathematics 2260H Geometry I: Euclidean geometry Trent University, Fall 2016 Solutions to the Quizzes

Mathematics 2260H Geometry I: Euclidean geometry Trent University, Fall 2016 Solutions to the Quizzes Mathematics 2260H Geometry I: Euclidean geometry Trent University, Fall 2016 Solutions to the Quizzes Quiz #1. Wednesday, 13 September. [10 minutes] 1. Suppose you are given a line (segment) AB. Using

More information

Extra Problems for Math 2050 Linear Algebra I

Extra Problems for Math 2050 Linear Algebra I Extra Problems for Math 5 Linear Algebra I Find the vector AB and illustrate with a picture if A = (,) and B = (,4) Find B, given A = (,4) and [ AB = A = (,4) and [ AB = 8 If possible, express x = 7 as

More information

Chapter (Circle) * Circle - circle is locus of such points which are at equidistant from a fixed point in

Chapter (Circle) * Circle - circle is locus of such points which are at equidistant from a fixed point in Chapter - 10 (Circle) Key Concept * Circle - circle is locus of such points which are at equidistant from a fixed point in a plane. * Concentric circle - Circle having same centre called concentric circle.

More information

INVERSION IN THE PLANE BERKELEY MATH CIRCLE

INVERSION IN THE PLANE BERKELEY MATH CIRCLE INVERSION IN THE PLANE BERKELEY MATH CIRCLE ZVEZDELINA STANKOVA MILLS COLLEGE/UC BERKELEY SEPTEMBER 26TH 2004 Contents 1. Definition of Inversion in the Plane 1 Properties of Inversion 2 Problems 2 2.

More information

Geometry in the Complex Plane

Geometry in the Complex Plane Geometry in the Complex Plane Hongyi Chen UNC Awards Banquet 016 All Geometry is Algebra Many geometry problems can be solved using a purely algebraic approach - by placing the geometric diagram on a coordinate

More information

Analytic Geometry MAT 1035

Analytic Geometry MAT 1035 Analytic Geometry MAT 035 5.09.04 WEEKLY PROGRAM - The first week of the semester, we will introduce the course and given a brief outline. We continue with vectors in R n and some operations including

More information

Concurrency and Collinearity

Concurrency and Collinearity Concurrency and Collinearity Victoria Krakovna vkrakovna@gmail.com 1 Elementary Tools Here are some tips for concurrency and collinearity questions: 1. You can often restate a concurrency question as a

More information

Analytic Geometry MAT 1035

Analytic Geometry MAT 1035 Analytic Geometry MAT 035 5.09.04 WEEKLY PROGRAM - The first week of the semester, we will introduce the course and given a brief outline. We continue with vectors in R n and some operations including

More information

This class will demonstrate the use of bijections to solve certain combinatorial problems simply and effectively.

This class will demonstrate the use of bijections to solve certain combinatorial problems simply and effectively. . Induction This class will demonstrate the fundamental problem solving technique of mathematical induction. Example Problem: Prove that for every positive integer n there exists an n-digit number divisible

More information

b UVW is a right-angled triangle, therefore VW is the diameter of the circle. Centre of circle = Midpoint of VW = (8 2) + ( 2 6) = 100

b UVW is a right-angled triangle, therefore VW is the diameter of the circle. Centre of circle = Midpoint of VW = (8 2) + ( 2 6) = 100 Circles 6F a U(, 8), V(7, 7) and W(, ) UV = ( x x ) ( y y ) = (7 ) (7 8) = 8 VW = ( 7) ( 7) = 64 UW = ( ) ( 8) = 8 Use Pythagoras' theorem to show UV UW = VW 8 8 = 64 = VW Therefore, UVW is a right-angled

More information

LLT Education Services

LLT Education Services 8. The length of a tangent from a point A at distance 5 cm from the centre of the circle is 4 cm. Find the radius of the circle. (a) 4 cm (b) 3 cm (c) 6 cm (d) 5 cm 9. From a point P, 10 cm away from the

More information

Part (1) Second : Trigonometry. Tan

Part (1) Second : Trigonometry. Tan Part (1) Second : Trigonometry (1) Complete the following table : The angle Ratio 42 12 \ Sin 0.3214 Cas 0.5321 Tan 2.0625 (2) Complete the following : 1) 46 36 \ 24 \\ =. In degrees. 2) 44.125 = in degrees,

More information

RMT 2013 Geometry Test Solutions February 2, = 51.

RMT 2013 Geometry Test Solutions February 2, = 51. RMT 0 Geometry Test Solutions February, 0. Answer: 5 Solution: Let m A = x and m B = y. Note that we have two pairs of isosceles triangles, so m A = m ACD and m B = m BCD. Since m ACD + m BCD = m ACB,

More information

Page 1 of 15. Website: Mobile:

Page 1 of 15. Website:    Mobile: Exercise 10.2 Question 1: From a point Q, the length of the tangent to a circle is 24 cm and the distance of Q from the centre is 25 cm. The radius of the circle is (A) 7 cm (B) 12 cm (C) 15 cm (D) 24.5

More information

( 1 ) Show that P ( a, b + c ), Q ( b, c + a ) and R ( c, a + b ) are collinear.

( 1 ) Show that P ( a, b + c ), Q ( b, c + a ) and R ( c, a + b ) are collinear. Problems 01 - POINT Page 1 ( 1 ) Show that P ( a, b + c ), Q ( b, c + a ) and R ( c, a + b ) are collinear. ( ) Prove that the two lines joining the mid-points of the pairs of opposite sides and the line

More information

TARGET : JEE 2013 SCORE. JEE (Advanced) Home Assignment # 03. Kota Chandigarh Ahmedabad

TARGET : JEE 2013 SCORE. JEE (Advanced) Home Assignment # 03. Kota Chandigarh Ahmedabad TARGT : J 01 SCOR J (Advanced) Home Assignment # 0 Kota Chandigarh Ahmedabad J-Mathematics HOM ASSIGNMNT # 0 STRAIGHT OBJCTIV TYP 1. If x + y = 0 is a tangent at the vertex of a parabola and x + y 7 =

More information

From the SelectedWorks of David Fraivert. David Fraivert. Spring May 8, Available at: https://works.bepress.com/david-fraivert/7/

From the SelectedWorks of David Fraivert. David Fraivert. Spring May 8, Available at: https://works.bepress.com/david-fraivert/7/ From the SelectedWorks of David Fraivert Spring May 8, 06 The theory of a convex quadrilateral and a circle that forms "Pascal points" - the properties of "Pascal points" on the sides of a convex quadrilateral

More information

Mathematics. Single Correct Questions

Mathematics. Single Correct Questions Mathematics Single Correct Questions +4 1.00 1. If and then 2. The number of solutions of, in the interval is : 3. If then equals : 4. A plane bisects the line segment joining the points and at right angles.

More information

Homework Assignments Math /02 Fall 2017

Homework Assignments Math /02 Fall 2017 Homework Assignments Math 119-01/02 Fall 2017 Assignment 1 Due date : Wednesday, August 30 Section 6.1, Page 178: #1, 2, 3, 4, 5, 6. Section 6.2, Page 185: #1, 2, 3, 5, 6, 8, 10-14, 16, 17, 18, 20, 22,

More information

Regent College. Maths Department. Core Mathematics 4. Vectors

Regent College. Maths Department. Core Mathematics 4. Vectors Regent College Maths Department Core Mathematics 4 Vectors Page 1 Vectors By the end of this unit you should be able to find: a unit vector in the direction of a. the distance between two points (x 1,

More information

1966 IMO Shortlist. IMO Shortlist 1966

1966 IMO Shortlist. IMO Shortlist 1966 IMO Shortlist 1966 1 Given n > 3 points in the plane such that no three of the points are collinear. Does there exist a circle passing through (at least) 3 of the given points and not containing any other

More information

LINEAR ALGEBRA - CHAPTER 1: VECTORS

LINEAR ALGEBRA - CHAPTER 1: VECTORS LINEAR ALGEBRA - CHAPTER 1: VECTORS A game to introduce Linear Algebra In measurement, there are many quantities whose description entirely rely on magnitude, i.e., length, area, volume, mass and temperature.

More information

Mathematics Extension 2

Mathematics Extension 2 Northern Beaches Secondary College Manly Selective Campus 010 HIGHER SCHOOL CERTIFICATE TRIAL EXAMINATION Mathematics Extension General Instructions Reading time 5 minutes Working time 3 hours Write using

More information

KENDRIYA VIDYALAYA SANGATHAN, HYDERABAD REGION

KENDRIYA VIDYALAYA SANGATHAN, HYDERABAD REGION KENDRIYA VIDYALAYA SANGATHAN, HYDERABAD REGION SAMPLE PAPER 02 F PERIODIC TEST III EXAM (2017-18) SUBJECT: MATHEMATICS(041) BLUE PRINT : CLASS IX Unit Chapter VSA (1 mark) SA I (2 marks) SA II (3 marks)

More information

The analysis method for construction problems in the dynamic geometry

The analysis method for construction problems in the dynamic geometry The analysis method for construction problems in the dynamic geometry Hee-chan Lew Korea National University of Education SEMEO-RECSAM University of Tsukuba of Tsukuba Joint Seminar Feb. 15, 2016, Tokyo

More information

POINT. Preface. The concept of Point is very important for the study of coordinate

POINT. Preface. The concept of Point is very important for the study of coordinate POINT Preface The concept of Point is ver important for the stud of coordinate geometr. This chapter deals with various forms of representing a Point and several associated properties. The concept of coordinates

More information

Inversion in the Plane. Part II: Radical Axes 1

Inversion in the Plane. Part II: Radical Axes 1 BERKELEY MATH CIRCLE, October 18 1998 Inversion in the Plane. Part II: Radical Axes 1 Zvezdelina Stankova-Frenkel, UC Berkeley Definition 2. The degree of point A with respect to a circle k(o, R) is defined

More information

Test Corrections for Unit 1 Test

Test Corrections for Unit 1 Test MUST READ DIRECTIONS: Read the directions located on www.koltymath.weebly.com to understand how to properly do test corrections. Ask for clarification from your teacher if there are parts that you are

More information

Locus Problems With Complex Numbers

Locus Problems With Complex Numbers Locus Locus Problems With Complex Numbers We start with a definition concept of locus. Then, we will present some basic examples of locus problems, given as regions in the complex plane. A locus is a set

More information

JANE LONG ACADEMY HIGH SCHOOL MATH SUMMER PREVIEW PACKET SCHOOL YEAR. Geometry

JANE LONG ACADEMY HIGH SCHOOL MATH SUMMER PREVIEW PACKET SCHOOL YEAR. Geometry JANE LONG ACADEMY HIGH SCHOOL MATH SUMMER PREVIEW PACKET 2015-2016 SCHOOL YEAR Geometry STUDENT NAME: THE PARTS BELOW WILL BE COMPLETED ON THE FIRST DAY OF SCHOOL: DUE DATE: MATH TEACHER: PERIOD: Algebra

More information

Mathematics Revision Guides Vectors Page 1 of 19 Author: Mark Kudlowski M.K. HOME TUITION. Mathematics Revision Guides Level: GCSE Higher Tier VECTORS

Mathematics Revision Guides Vectors Page 1 of 19 Author: Mark Kudlowski M.K. HOME TUITION. Mathematics Revision Guides Level: GCSE Higher Tier VECTORS Mathematics Revision Guides Vectors Page of 9 M.K. HOME TUITION Mathematics Revision Guides Level: GCSE Higher Tier VECTORS Version:.4 Date: 05-0-05 Mathematics Revision Guides Vectors Page of 9 VECTORS

More information

PRACTICE QUESTIONS CLASS IX: CHAPTER 4 LINEAR EQUATION IN TWO VARIABLES

PRACTICE QUESTIONS CLASS IX: CHAPTER 4 LINEAR EQUATION IN TWO VARIABLES PRACTICE QUESTIONS CLASS IX: CHAPTER 4 LINEAR EQUATION IN TWO VARIABLES 1. Find the value of k, if x =, y = 1 is a solution of the equation x + 3y = k.. Find the points where the graph of the equation

More information

COORDINATE GEOMETRY BASIC CONCEPTS AND FORMULAE. To find the length of a line segment joining two points A(x 1, y 1 ) and B(x 2, y 2 ), use

COORDINATE GEOMETRY BASIC CONCEPTS AND FORMULAE. To find the length of a line segment joining two points A(x 1, y 1 ) and B(x 2, y 2 ), use COORDINATE GEOMETRY BASIC CONCEPTS AND FORMULAE I. Length of a Line Segment: The distance between two points A ( x1, 1 ) B ( x, ) is given b A B = ( x x1) ( 1) To find the length of a line segment joining

More information

Practice Test Geometry 1. Which of the following points is the greatest distance from the y-axis? A. (1,10) B. (2,7) C. (3,5) D. (4,3) E.

Practice Test Geometry 1. Which of the following points is the greatest distance from the y-axis? A. (1,10) B. (2,7) C. (3,5) D. (4,3) E. April 9, 01 Standards: MM1Ga, MM1G1b Practice Test Geometry 1. Which of the following points is the greatest distance from the y-axis? (1,10) B. (,7) C. (,) (,) (,1). Points P, Q, R, and S lie on a line

More information

2005 Palm Harbor February Invitational Geometry Answer Key

2005 Palm Harbor February Invitational Geometry Answer Key 005 Palm Harbor February Invitational Geometry Answer Key Individual 1. B. D. C. D 5. C 6. D 7. B 8. B 9. A 10. E 11. D 1. C 1. D 1. C 15. B 16. B 17. E 18. D 19. C 0. C 1. D. C. C. A 5. C 6. C 7. A 8.

More information

Introduction to Vectors Pg. 279 # 1 6, 8, 9, 10 OR WS 1.1 Sept. 7. Vector Addition Pg. 290 # 3, 4, 6, 7, OR WS 1.2 Sept. 8

Introduction to Vectors Pg. 279 # 1 6, 8, 9, 10 OR WS 1.1 Sept. 7. Vector Addition Pg. 290 # 3, 4, 6, 7, OR WS 1.2 Sept. 8 UNIT 1 INTRODUCTION TO VECTORS Lesson TOPIC Suggested Work Sept. 5 1.0 Review of Pre-requisite Skills Pg. 273 # 1 9 OR WS 1.0 Fill in Info sheet and get permission sheet signed. Bring in $3 for lesson

More information

CLASS IX : CHAPTER - 1 NUMBER SYSTEM

CLASS IX : CHAPTER - 1 NUMBER SYSTEM MCQ WORKSHEET-I CLASS IX : CHAPTER - 1 NUMBER SYSTEM 1. Rational number 3 40 is equal to: (a) 0.75 (b) 0.1 (c) 0.01 (d) 0.075. A rational number between 3 and 4 is: (a) 3 (b) 4 3 (c) 7 (d) 7 4 3. A rational

More information

1 Line n intersects lines l and m, forming the angles shown in the diagram below. 4 In the diagram below, MATH is a rhombus with diagonals AH and MT.

1 Line n intersects lines l and m, forming the angles shown in the diagram below. 4 In the diagram below, MATH is a rhombus with diagonals AH and MT. 1 Line n intersects lines l and m, forming the angles shown in the diagram below. 4 In the diagram below, MATH is a rhombus with diagonals AH and MT. Which value of x would prove l m? 1) 2.5 2) 4.5 3)

More information

Automatic rewrites of input expressions in complex algebraic geometry provers

Automatic rewrites of input expressions in complex algebraic geometry provers Automatic rewrites of input expressions in complex algebraic geometry provers Zoltán Kovács 1, Tomás Recio 2 and Csilla Sólyom-Gecse 3 1 Private University College of Education of the Diocese of Linz,

More information

Senior Math Circles February 18, 2009 Conics III

Senior Math Circles February 18, 2009 Conics III University of Waterloo Faculty of Mathematics Senior Math Circles February 18, 2009 Conics III Centre for Education in Mathematics and Computing Eccentricity of Conics Fix a point F called the focus, a

More information

0112ge. Geometry Regents Exam Line n intersects lines l and m, forming the angles shown in the diagram below.

0112ge. Geometry Regents Exam Line n intersects lines l and m, forming the angles shown in the diagram below. Geometry Regents Exam 011 011ge 1 Line n intersects lines l and m, forming the angles shown in the diagram below. 4 In the diagram below, MATH is a rhombus with diagonals AH and MT. Which value of x would

More information

The Distance Formula. The Midpoint Formula

The Distance Formula. The Midpoint Formula Math 120 Intermediate Algebra Sec 9.1: Distance Midpoint Formulas The Distance Formula The distance between two points P 1 = (x 1, y 1 ) P 2 = (x 1, y 1 ), denoted by d(p 1, P 2 ), is d(p 1, P 2 ) = (x

More information

PARABOLAS AND FAMILIES OF CONVEX QUADRANGLES

PARABOLAS AND FAMILIES OF CONVEX QUADRANGLES PROLS N FMILIS OF ONVX QURNGLS PRIS PMFILOS bstract. In this article we study some parabolas naturally associated with a generic convex quadrangle. It is shown that the quadrangle defines, through these

More information

Computer algebra systems (CAS) have been around for a number of years,

Computer algebra systems (CAS) have been around for a number of years, Problem solving in calculus with symbolic geometry and CAS Philip Todd Saltire Software James Wiechmann Tualatin High School, Tualatin Oregon, USA Computer

More information

Calgary Math Circles: Triangles, Concurrency and Quadrilaterals 1

Calgary Math Circles: Triangles, Concurrency and Quadrilaterals 1 Calgary Math Circles: Triangles, Concurrency and Quadrilaterals 1 1 Triangles: Basics This section will cover all the basic properties you need to know about triangles and the important points of a triangle.

More information

Udaan School Of Mathematics Class X Chapter 10 Circles Maths

Udaan School Of Mathematics Class X Chapter 10 Circles Maths Exercise 10.1 1. Fill in the blanks (i) The common point of tangent and the circle is called point of contact. (ii) A circle may have two parallel tangents. (iii) A tangent to a circle intersects it in

More information

VAISHALI EDUCATION POINT (QUALITY EDUCATION PROVIDER)

VAISHALI EDUCATION POINT (QUALITY EDUCATION PROVIDER) BY:Prof. RAHUL MISHRA Class :- X QNo. VAISHALI EDUCATION POINT (QUALITY EDUCATION PROVIDER) CIRCLES Subject :- Maths General Instructions Questions M:9999907099,9818932244 1 In the adjoining figures, PQ

More information

The Coordinate Plane. Circles and Polygons on the Coordinate Plane. LESSON 13.1 Skills Practice. Problem Set

The Coordinate Plane. Circles and Polygons on the Coordinate Plane. LESSON 13.1 Skills Practice. Problem Set LESSON.1 Skills Practice Name Date The Coordinate Plane Circles and Polgons on the Coordinate Plane Problem Set Use the given information to show that each statement is true. Justif our answers b using

More information

Exploring Loci on Sketchpad

Exploring Loci on Sketchpad Paper presented at 4th ongress of MES, Jul 98 and published in Pythagoras, 46/47, Dec 98, 71-73. Exploring Loci on Sketchpad Michael de Villiers, Mathematics Education, University of Durban-Westville,

More information

1. The positive zero of y = x 2 + 2x 3/5 is, to the nearest tenth, equal to

1. The positive zero of y = x 2 + 2x 3/5 is, to the nearest tenth, equal to SAT II - Math Level Test #0 Solution SAT II - Math Level Test No. 1. The positive zero of y = x + x 3/5 is, to the nearest tenth, equal to (A) 0.8 (B) 0.7 + 1.1i (C) 0.7 (D) 0.3 (E). 3 b b 4ac Using Quadratic

More information

16 circles. what goes around...

16 circles. what goes around... 16 circles. what goes around... 2 lesson 16 this is the first of two lessons dealing with circles. this lesson gives some basic definitions and some elementary theorems, the most important of which is

More information

Building counter examples in teaching and learning of high school mathematics with the aid of Geogebra

Building counter examples in teaching and learning of high school mathematics with the aid of Geogebra Building counter examples in teaching and learning of high school mathematics with the aid of Geogebra PhD. Le Tuan Anh Faculty of Mathematics and Informatics, Hanoi National University of Education, Vietnam

More information

Ion Patrascu, Florentin Smarandache Theorems with Parallels Taken through a Triangle s Vertices and Constructions Performed only with the Ruler

Ion Patrascu, Florentin Smarandache Theorems with Parallels Taken through a Triangle s Vertices and Constructions Performed only with the Ruler Theorems with Parallels Taken through a Triangle s Vertices and Constructions Performed only with the Ruler In Ion Patrascu, Florentin Smarandache: Complements to Classic Topics of Circles Geometry. Brussels

More information

Indicate whether the statement is true or false.

Indicate whether the statement is true or false. PRACTICE EXAM IV Sections 6.1, 6.2, 8.1 8.4 Indicate whether the statement is true or false. 1. For a circle, the constant ratio of the circumference C to length of diameter d is represented by the number.

More information

Introduction to Computer Graphics (Lecture No 07) Ellipse and Other Curves

Introduction to Computer Graphics (Lecture No 07) Ellipse and Other Curves Introduction to Computer Graphics (Lecture No 07) Ellipse and Other Curves 7.1 Ellipse An ellipse is a curve that is the locus of all points in the plane the sum of whose distances r1 and r from two fixed

More information

MEP Pupil Text 13-19, Additional Material. Gradients of Perpendicular Lines

MEP Pupil Text 13-19, Additional Material. Gradients of Perpendicular Lines Graphs MEP Pupil Text -9, Additional Material.B Gradients of Perpendicular Lines In this section we explore the relationship between the gradients of perpendicular lines and line segments. Worked Example

More information

Forum Geometricorum Volume 6 (2006) FORUM GEOM ISSN Simmons Conics. Bernard Gibert

Forum Geometricorum Volume 6 (2006) FORUM GEOM ISSN Simmons Conics. Bernard Gibert Forum Geometricorum Volume 6 (2006) 213 224. FORUM GEOM ISSN 1534-1178 Simmons onics ernard Gibert bstract. We study the conics introduced by T.. Simmons and generalize some of their properties. 1. Introduction

More information

DATE: MATH ANALYSIS 2 CHAPTER 12: VECTORS & DETERMINANTS

DATE: MATH ANALYSIS 2 CHAPTER 12: VECTORS & DETERMINANTS NAME: PERIOD: DATE: MATH ANALYSIS 2 MR. MELLINA CHAPTER 12: VECTORS & DETERMINANTS Sections: v 12.1 Geometric Representation of Vectors v 12.2 Algebraic Representation of Vectors v 12.3 Vector and Parametric

More information

Some Basic Logic. Henry Liu, 25 October 2010

Some Basic Logic. Henry Liu, 25 October 2010 Some Basic Logic Henry Liu, 25 October 2010 In the solution to almost every olympiad style mathematical problem, a very important part is existence of accurate proofs. Therefore, the student should be

More information

b = 2, c = 3, we get x = 0.3 for the positive root. Ans. (D) x 2-2x - 8 < 0, or (x - 4)(x + 2) < 0, Therefore -2 < x < 4 Ans. (C)

b = 2, c = 3, we get x = 0.3 for the positive root. Ans. (D) x 2-2x - 8 < 0, or (x - 4)(x + 2) < 0, Therefore -2 < x < 4 Ans. (C) SAT II - Math Level 2 Test #02 Solution 1. The positive zero of y = x 2 + 2x is, to the nearest tenth, equal to (A) 0.8 (B) 0.7 + 1.1i (C) 0.7 (D) 0.3 (E) 2.2 ± Using Quadratic formula, x =, with a = 1,

More information

So, eqn. to the bisector containing (-1, 4) is = x + 27y = 0

So, eqn. to the bisector containing (-1, 4) is = x + 27y = 0 Q.No. The bisector of the acute angle between the lines x - 4y + 7 = 0 and x + 5y - = 0, is: Option x + y - 9 = 0 Option x + 77y - 0 = 0 Option x - y + 9 = 0 Correct Answer L : x - 4y + 7 = 0 L :-x- 5y

More information

Created by T. Madas 2D VECTORS. Created by T. Madas

Created by T. Madas 2D VECTORS. Created by T. Madas 2D VECTORS Question 1 (**) Relative to a fixed origin O, the point A has coordinates ( 2, 3). The point B is such so that AB = 3i 7j, where i and j are mutually perpendicular unit vectors lying on the

More information

1. Matrices and Determinants

1. Matrices and Determinants Important Questions 1. Matrices and Determinants Ex.1.1 (2) x 3x y Find the values of x, y, z if 2x + z 3y w = 0 7 3 2a Ex 1.1 (3) 2x 3x y If 2x + z 3y w = 3 2 find x, y, z, w 4 7 Ex 1.1 (13) 3 7 3 2 Find

More information

five line proofs Victor Ufnarovski, Frank Wikström 20 december 2016 Matematikcentrum, LTH

five line proofs Victor Ufnarovski, Frank Wikström 20 december 2016 Matematikcentrum, LTH five line proofs Victor Ufnarovski, Frank Wikström 20 december 2016 Matematikcentrum, LTH projections The orthogonal projections of a body on two different planes are disks. Prove that they have the same

More information

PURE MATHEMATICS AM 27

PURE MATHEMATICS AM 27 AM SYLLABUS (2020) PURE MATHEMATICS AM 27 SYLLABUS 1 Pure Mathematics AM 27 (Available in September ) Syllabus Paper I(3hrs)+Paper II(3hrs) 1. AIMS To prepare students for further studies in Mathematics

More information

P1 Chapter 6 :: Circles

P1 Chapter 6 :: Circles P1 Chapter 6 :: Circles jfrost@tiffin.kingston.sch.uk www.drfrostmaths.com @DrFrostMaths Last modified: 11 th August 2017 Use of DrFrostMaths for practice Register for free at: www.drfrostmaths.com/homework

More information

Power Round: Geometry Revisited

Power Round: Geometry Revisited Power Round: Geometry Revisited Stobaeus (one of Euclid s students): But what shall I get by learning these things? Euclid to his slave: Give him three pence, since he must make gain out of what he learns.

More information

SOLVED PROBLEMS. 1. The angle between two lines whose direction cosines are given by the equation l + m + n = 0, l 2 + m 2 + n 2 = 0 is

SOLVED PROBLEMS. 1. The angle between two lines whose direction cosines are given by the equation l + m + n = 0, l 2 + m 2 + n 2 = 0 is SOLVED PROBLEMS OBJECTIVE 1. The angle between two lines whose direction cosines are given by the equation l + m + n = 0, l 2 + m 2 + n 2 = 0 is (A) π/3 (B) 2π/3 (C) π/4 (D) None of these hb : Eliminating

More information

Skills Practice Skills Practice for Lesson 9.1

Skills Practice Skills Practice for Lesson 9.1 Skills Practice Skills Practice for Lesson.1 Name Date Meeting Friends The Distance Formula Vocabular Define the term in our own words. 1. Distance Formula Problem Set Archaeologists map the location of

More information

Homework Assignments Math /02 Fall 2014

Homework Assignments Math /02 Fall 2014 Homework Assignments Math 119-01/02 Fall 2014 Assignment 1 Due date : Friday, September 5 6th Edition Problem Set Section 6.1, Page 178: #1, 2, 3, 4, 5, 6. Section 6.2, Page 185: #1, 2, 3, 5, 6, 8, 10-14,

More information

Lecture 3: Geometry. Sadov s theorem. Morley s miracle. The butterfly theorem. E-320: Teaching Math with a Historical Perspective Oliver Knill, 2013

Lecture 3: Geometry. Sadov s theorem. Morley s miracle. The butterfly theorem. E-320: Teaching Math with a Historical Perspective Oliver Knill, 2013 E-320: Teaching Math with a Historical Perspective Oliver Knill, 2013 Lecture 3: Geometry Sadov s theorem Here is an example of a geometric theorem which has been found only 10 years ago: The quadrilateral

More information

Aldine I.S.D. Benchmark Targets/ Algebra 2 SUMMER 2004

Aldine I.S.D. Benchmark Targets/ Algebra 2 SUMMER 2004 ASSURANCES: By the end of Algebra 2, the student will be able to: 1. Solve systems of equations or inequalities in two or more variables. 2. Graph rational functions and solve rational equations and inequalities.

More information

Objective Mathematics

Objective Mathematics . A tangent to the ellipse is intersected by a b the tangents at the etremities of the major ais at 'P' and 'Q' circle on PQ as diameter always passes through : (a) one fied point two fied points (c) four

More information

Geometry JWR. Monday September 29, 2003

Geometry JWR. Monday September 29, 2003 Geometry JWR Monday September 29, 2003 1 Foundations In this section we see how to view geometry as algebra. The ideas here should be familiar to the reader who has learned some analytic geometry (including

More information

Proceedings of the Third International DERIVE/TI-92 Conference

Proceedings of the Third International DERIVE/TI-92 Conference Explorations in Plane Geometry in Cabri and Derive Environment Rakov S.A Gorokh V.P. Kharkov State Pedagogical University named after G.S.Skovoroda tel/fax: (+380) (0572) 676-604 E-mail: Rakov@pu.ac.Kharkov.UA

More information

MAT1035 Analytic Geometry

MAT1035 Analytic Geometry MAT1035 Analytic Geometry Lecture Notes R.A. Sabri Kaan Gürbüzer Dokuz Eylül University 2016 2 Contents 1 Review of Trigonometry 5 2 Polar Coordinates 7 3 Vectors in R n 9 3.1 Located Vectors..............................................

More information

Maharashtra Board Class X Mathematics - Geometry Board Paper 2014 Solution. Time: 2 hours Total Marks: 40

Maharashtra Board Class X Mathematics - Geometry Board Paper 2014 Solution. Time: 2 hours Total Marks: 40 Maharashtra Board Class X Mathematics - Geometry Board Paper 04 Solution Time: hours Total Marks: 40 Note: - () All questions are compulsory. () Use of calculator is not allowed.. i. Ratio of the areas

More information

CO-ORDINATE GEOMETRY

CO-ORDINATE GEOMETRY CO-ORDINATE GEOMETRY MATHS SERIES CO-ORDINATE GEOMETRY By N.P. BALI FIREWALL MEDIA (An Imprint of Laxmi Publications Pvt. Ltd.) BANGALORE CHENNAI COCHIN GUWAHATI HYDERABAD JALANDHAR KOLKATA LUCKNOW MUMBAI

More information

A New Generalization of the Butterfly Theorem

A New Generalization of the Butterfly Theorem Journal for Geometry and Graphics Volume 6 (2002), No. 1, 61 68. A New Generalization of the Butterfly Theorem Ana Sliepčević Faculty of Civil Engineering, University Zagreb Av. V. Holjevca 15, HR 10010

More information

Practice Assessment Task SET 3

Practice Assessment Task SET 3 PRACTICE ASSESSMENT TASK 3 655 Practice Assessment Task SET 3 Solve m - 5m + 6 $ 0 0 Find the locus of point P that moves so that it is equidistant from the points A^-3, h and B ^57, h 3 Write x = 4t,

More information

KENDRIYA VIDYALAYA SANGATHAN, HYDERABAD REGION

KENDRIYA VIDYALAYA SANGATHAN, HYDERABAD REGION KENDRIYA VIDYALAYA SANGATHAN, HYDERABAD REGION SAMPLE PAPER 02 F SESSING ENDING EXAM (2017-18) SUBJECT: MATHEMATICS(041) BLUE PRINT : CLASS IX Unit Chapter VSA (1 mark) SA I (2 marks) SA II (3 marks) LA

More information

Weekly Activities Ma 110

Weekly Activities Ma 110 Weekly Activities Ma 110 Fall 2008 As of October 27, 2008 We give detailed suggestions of what to learn during each week. This includes a reading assignment as well as a brief description of the main points

More information

Higher Geometry Problems

Higher Geometry Problems Higher Geometry Problems (1 Look up Eucidean Geometry on Wikipedia, and write down the English translation given of each of the first four postulates of Euclid. Rewrite each postulate as a clear statement

More information

2013 Sharygin Geometry Olympiad

2013 Sharygin Geometry Olympiad Sharygin Geometry Olympiad 2013 First Round 1 Let ABC be an isosceles triangle with AB = BC. Point E lies on the side AB, and ED is the perpendicular from E to BC. It is known that AE = DE. Find DAC. 2

More information

The sum x 1 + x 2 + x 3 is (A): 4 (B): 6 (C): 8 (D): 14 (E): None of the above. How many pairs of positive integers (x, y) are there, those satisfy

The sum x 1 + x 2 + x 3 is (A): 4 (B): 6 (C): 8 (D): 14 (E): None of the above. How many pairs of positive integers (x, y) are there, those satisfy Important: Answer to all 15 questions. Write your answers on the answer sheets provided. For the multiple choice questions, stick only the letters (A, B, C, D or E) of your choice. No calculator is allowed.

More information

January 21, 2018 Math 9. Geometry. The method of coordinates (continued). Ellipse. Hyperbola. Parabola.

January 21, 2018 Math 9. Geometry. The method of coordinates (continued). Ellipse. Hyperbola. Parabola. January 21, 2018 Math 9 Ellipse Geometry The method of coordinates (continued) Ellipse Hyperbola Parabola Definition An ellipse is a locus of points, such that the sum of the distances from point on the

More information

Conic Sections Session 3: Hyperbola

Conic Sections Session 3: Hyperbola Conic Sections Session 3: Hyperbola Toh Pee Choon NIE Oct 2017 Toh Pee Choon (NIE) Session 3: Hyperbola Oct 2017 1 / 16 Problem 3.1 1 Recall that an ellipse is defined as the locus of points P such that

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Student Name:

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Student Name: GEOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY Thursday, January 27, 2011 9:15 a.m. to 12:15 p.m., only Student Name: School Name: Print your name and the name

More information