Vol 78 Num 2 Spring 2019
Vol 78 Num 2 Spring 2019
THE PENTAGON
Contents
Editor:
Doug Brown
Department of Mathematics
Catawba College
2300 West Innes Street
Salisbury, NC 28144-2441
[email protected]
Associate Editors:
The Problem Corner:
Pat Costello
Department of Math. and Statistics
Eastern Kentucky University
521 Lancaster Avenue
Richmond, KY 40475-3102
[email protected]
Maryland Delta
Abstract
Elliptic curves are defined by equations of the form y 2 = p(x), where p(x)
is a cubic polynomial. Their mathematical properties have made them very
useful in some modern encryption algorithms making up the field called
Elliptic Curve Cryptography (ECC). Of particular importance is the ad-
dition operation that can be performed on an elliptic curve whereby two
points on the curve can be “added” to yield a third point on the curve. The
geometric version of this addition rule leads to its algebraic equivalent.
When the curve’s coefficients and solutions are taken from a finite field,
the proper setting is formed for applications to cryptography. The fact
that the “Elliptic Curve Discrete Logarithm Problem” is difficult to solve
is the key to the effectiveness of ECC. The Elliptic Diffie-Hellman Key
Exchange algorithm uses this property to perform a secure private key ex-
change between two parties in the presence of eavesdroppers. This paper
investigates the mathematics behind the addition of points on an elliptic
curve and how this leads to an effective encryption technique allowing se-
cure key exchanges.
Introduction
Elliptic Curve Cryptography provides a process of sending a private key
from one party, Alice, to another party, Bob, securely in the presence of an
eavesdropper. In order to do this without hand delivering it, Elliptic Curve
Cryptography is used. The private key is used to encrypt and decrypt a
message using Data Encryption Standard (DES) or Advanced Encryption
Standard (AES).
Spring 2019 5
Figure 1
d 2 d 3
(y ) = (x + Ax + B)
dx dx
dy
⇒ 2y = 3x2 + A
dx
dy 3x2 + A
⇒ = .
dx 2y
Evaluated at point P = Q = (x1 , y1 ) :
dy 3x1 2 + A
= ,
dx 2y1
as desired.
We now prove the formula for x3 and y3 in (2b). Let λ be the slope
of the line through the two points P = (x1 , y1 ) and Q = (x2 , y2 ) on the
elliptic curve E : y 2 = x3 +Ax+B. Then, the line L through these points,
8 The Pentagon
We know that x = x1 and x = x2 are roots. So, x3 will be our third point
of intersection. Therefore:
x3 − λ2 x2 + (A − 2vλ) x + B − v 2 = (x − x1 ) (x − x2 ) (x − x3 )
⇒ x3 − λ2 x2 + (A − 2vλ) x + B − v 2
= x3 − (x1 + x2 + x3 ) x2 + (x1 x2 + x2 x3 + x1 x3 ) x − x1 x2 x3 .
It must be the case that the coefficient of x2 on the right must be equal to
the coefficient of x2 on the left. Therefore, x1 + x2 + x3 = λ2 . Solving for
x3 gives us x3 = λ2 − x1 − x2 . We know y = λx + v , and v = y1 − λx1 ,
so:
y = λx3 + v
⇒ y = λx3 + y1 − λx1
⇒ y = λ(x3 − x1 ) + y1 .
Then, we reflect the point over the x-axis, so we get −y so that y3 =
λ(x1 − x3 ) − y1 . So, the point P ⊕ Q = (x3 , y3 ) where x3 = λ2 − x1 − x2
and y3 = λ(x1 − x3 ) − y1 , as desired.
We now discuss the commutative property: we need to show that for all
points P, Q ∈ E , it is true that P ⊕ Q = Q ⊕ P . The proof we give here
can be found in [9]. Let P = (x1 , y1 ) and Q = (x2 , y2 ) on the elliptic
curve E . The slope of the line through P and Q, is going to be the same
as the slope through Q and P . Since they have the same slope and we can
choose either of the points to plug into the point-slope formula to obtain
the equation of the line, the line through P and Q is the same as the line
through Q and P . Therefore, since the two lines are the same, this line
will intersect the curve E at a third point R. Reflecting this point over the
x-axis returns the same point P ⊕ Q or Q ⊕ P no matter which point we
started with.
Spring 2019 9
x3 = λ2 − x1 − x2 , and y3 = λ(x1 − x3 ) − y1 .
Addition Examples
The following examples demonstrate the previously mentioned formulas.
1. Adding Two Different Points: Given the elliptic curve:
y 2 = x3 − 2x + 8
with points P = (−2, 2) and Q = (−1, 3) on that curve, find P ⊕ Q.
Step 1: Find the slope of the line through points P and Q. The slope
of the line is:
3−2
λ= = 1.
−1 − (−2)
Scalar Multiplication
In our application of cryptography, we will also utilize a technique called
scalar multiplication to make addition easier. In Elliptic Curve Cryptogra-
phy, points like nP are needed, where n is an integer. It is possible to add
P to itself n times, but it is more efficient to use an algorithm called the
double-and-add algorithm. The steps of this algorithm are as follows [2]:
Step 1: Convert n to base 2.
Step 2: Write n as a sum of powers of 2.
Step 3: Double P until the highest power of 2 is reached.
Step 4: Add all 2kP that are multiplied by 1 in the base 2 form of n,
where { k ∈ Z| k > 0} .
and 24 P =
Figure 8
Spring 2019 13
To find points on the elliptic curve E that is over the finite plane, all possi-
ble values for x, which are 0, 1, . . . , (p − 1), are plugged into the equation.
If that value is a square mod p, then it creates two points on the curve.
The question of how many points are on an elliptic curve is answered by
the following theorem.
and x = 2, 4, 5, 6, 7, 8, 9, 11, 12, are not squares mod 13. The following is
the graph showing the elliptic curve.
Figure 9
Figure 10
14 The Pentagon
and
y3 = (13(2 − 56) − 32)(mod103)
= −734(mod103)
= 90.
Therefore, the point P ⊕ Q = (56, 90). The following is a graph of the
P ⊕ Q addition where the dotted line is found by considering the Cartesian
line of slope 13 through P and then identifying points (x, 0) with (x, 103).
Likewise, points (0, y) and (103, y) are identified.
Figure 11
Figure 12
Encryption
To encrypt a message, either DES or AES is used, which are both a form
of symmetric encryption. Symmetric encryption needs one secret key in
order to decrypt and encrypt a message [5]. So, this key needs to get from
Alice to Bob, in the presence of an eavesdropper, Eve, without having to
hand deliver it. This is accomplished using a Diffie-Hellman key exchange.
To begin, Alice and Bob both agree on an elliptic curve, a point on that
curve, and a finite field they wish to use to obtain the secret key. Then,
Alice chooses a secret integer, a, and computes A = aP . Bob does the
same, he chooses a secret integer, b, and computes B = bP . Then, they
exchange A and B . Alice then computes aB = abP and Bob computes
bA = baP. Since the elliptic curve is an abelian group and has the com-
mutative property, abP = baP. Therefore, they both end up with the same
point. The x-coordinate of that point will be the secret key [12]. See Fig-
ure 13 below.
The security of Elliptic Curve Cryptography is determined by the curve,
Spring 2019 17
and the finite field that is used. There are some curves that cannot be used
because they are easily cracked [3]. In order for Eve to be able to find the
secret key, she would have to find abP with what she is given; the ellip-
tic curve, the finite field, the point P, A and B. This is called the Elliptic
Curve Discrete Logarithmic Problem (ECDLP) [12]. If p is small, then it is
a lot easier to determine the point abP, but as p grows it becomes increas-
ingly more difficult. According to Hoffstein, “the
p fastest known algorithm
to solve ECDLP in E(Fp )takes approximately (p) steps.” [6]
Applications
Elliptic Curve Cryptography is used in many things. One use of it is in
the secure exchange of bitcoins. Bitcoins are “owned” by people if they
can give it to someone else. They must be able to show this exchange by
having a record of it created on a ledger which is called the block chain
[8]. According to Rykwalder, in order to have this ability, the person must
have a private and public key. Another example of where this type of cryp-
tography is used is in Microsoft’s digital rights management. An example
is shown below of how large the numbers used in this type of cryptography
can be [7]:
p (prime number)
= 785963102379428822376694789446897396207498568951
A = 317689081251325503476317476413827693272746955927
B = 79052896607878758718120572025718535432100651934
P (point)
= (771507216262649826170648268565579889907769254176,
390157510246556628525279459266514995562533196655)
This example also shows how difficult it would be for Eve to discover what
the secret key is. Above, Hoffstein noted that the fastest Eve would be able
√
to figure out the secret key is in about p steps. That would mean, in this
case, it would be about 8.865 × 1023 steps. This means, on a computer
that can do 2.8 billion operations per second, which is a normal computer,
it would take 100400 centuries to figure out the secret key.
18 The Pentagon
In Private
Alice chooses a number a = 592
and computes A = 592P.
So A = (116, 655).
In Front of Eve
Alice sends A to Bob.
Bob sends B to Alice.
In Private
Alice computes aB = (680, 256)
Bob computes bA = (680, 256).
Then they both have the point abP = (680, 256) and the secret key 680
and can use this key to securely encrypt and decrypt all of their messages.
Figure 13
Spring 2019 19
References
[1] Ash, Avner, and Robert Gross. Elliptic Tales: Curves, Counting, and
Number Theory. Princeton University Press, 2014.
[2] Corbellini, Andrea. Elliptic Curve Cryptography: a Gentle Introduc-
tion. Andrea Corbellini Atom, 17 May 2015,
andrea.corbellini.name/2015/05/17/elliptic-curve-cryptographya-gentle-
introduction/.
[3] Corbellini, Andrea. Elliptic Curve Cryptography: ECDH and ECDSA.
Andrea Corbellini Atom, 30 May 2015,
andrea.corbellini.name/2015/05/30/elliptic-curve- cryptographyecdh-
and-ecdsa/.
[4] Corbellini, Andrea. Elliptic Curve Cryptography: Finite Fields and
Discrete Logarithms.” Andrea Corbellini Atom, 23 May 2015,
andrea.corbellini.name/2015/05/23/ellipticcurve-cryptography-finite-
fields-and-discrete-logarithms/.
[5] Description of Symmetric and Asymmetric Encryption.
Support.microsoft.com, Microsoft, 2017,
support.microsoft.com/en-us/help/246071/description-of- symmetric-
andasymmetric-encryption.
[6] Hoffstein, Jeffrey, et al. An Introduction to Mathematical Cryptogra-
phy. Springer, 2008.
[7] Pierce, Robert. Elliptic Curve Diffie Hellman. YouTube, 10 Dec. 2014,
www.youtube.com/ watch?v=F3zzNa42-tQ&t=4s.
[8] Rykwalder, Eric. The Math Behind Bitcoin. CoinDesk, CoinDesk, 19
Oct. 2014, www.coindesk.com/math-behind-bitcoin/.
[9] Silverman, Joseph H., and John Torrence Tate. Rational Points on
Elliptic Curves. 2nd ed., Springer, 2015.
[10] Silverman, Joseph H., and John T. Tate. Rational Points on Elliptic
Curves. Springer, 2015.
[11] United States, Congress, Digital Signature Standard (DSS). Digital
Signature Standard (DSS), 2013, pp. 1121.
nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-4.pdf.
[12] Washington, Lawrence C. Elliptic Curves: Number Theory and Cryp-
tography. CRC Press, 2003.
20 The Pentagon
Abstract
We consider the configuration of n ones and any number of additions and
multiplications that will result in the largest value.
Introduction
Problem F26 in [1] asks the following question: For a given natural num-
ber n, what is the smallest number f (n) of ones that can be used to rep-
resent n using ones and any number of + and × signs and parentheses. It
can be shown that
80 = (1 + 1 + 1 + 1 + 1) × (1 + 1 + 1 + 1) × (1 + 1 + 1 + 1)
requires the fewest number of ones and so f (80) = 13. Some work on this
problem appeared in [2].
In this note, we ask a related question: Given n ones, what configuration
will give the largest value?
The Solution
We begin by simplifying the notation. If n = 8 one possible configuration
would be
(1 + 1 + 1 + 1 + 1) × (1 + 1 + 1)
which we shall represent by π 8 (5, 3) = 5 · 3 = 15. In general
π n (a1 , a2 , . . . , ak ) = a1 · a2 · · · ak represents
(1 + 1 + · · · + 1) × (1 + 1 + · · · + 1) × · · · × (1 + 1 + · · · + 1)
| {z } | {z } | {z }
a1 ones a2 ones ak ones
where n = a1 + a2 + · · · + ak . Let Pn be the maximum value of
π n (a1 , a2 , . . . , ak ) .
Spring 2019 21
and no more than four ones (by part (a)). Also, note that since we always
choose to write (1 + 1 + 1 + 1) as (1 + 1) × (1 + 1) we can say that
each summand contains either two or three ones. In addition, by part (c),
Pn arises from a configuration where at most two summands contain two
ones. That, together with the fact that replacing any × with a + will result
in a smaller value of π n , gives the classification in Theorem 1.
Theorem 3 Let n be the number of ones and 1 < k. We have three cases:
(a) n = 3k Pn = 3k = π n (3, 3, . . . , 3);
| {z }
k threes
(b) n = 3k + 1 Pn = 3k−1 · 22 = π n (3, 3, . . . , 3, 2, 2);
| {z }
k−1 threes
(c) n = 3k + 2 Pn = 3k−1 · 2 = π n (3, 3, . . . , 3, 2).
| {z }
k threes
Proof. The results for (a) and (c) follow directly from Proposition 2. For
(b), as n is one greater than a multiple of three, we can arrange 3k + 1
ones as k summands, each of the form 1 + 1 + 1, plus a final 1 left over.
That one is added to a summand containing three ones giving a summand
containing four ones, which is then split into the product of two summands
each containing two ones and the result follows.
Note: Keene State College hosts a STEM Day for 5th Graders in May
and this question was given as an exploration. Through trial and error,
many groups were eventually able to describe in rough terms the general
results.
References
So b = 0 is not a possibility.
Suppose b = 1. We would have d = c. Then
103 + 102 + 10c + c = 11(12 + c2 + c2 )
which simplifies to 22c2 + 11c − 1089 = 0. This quadratic has no integer
solutions. So b = 1 is not a possibility.
Suppose b = 2. We would have d = c − 1. Then
103 + 2 · 102 + 10c + (c − 1) = 11(22 + c2 + (c − 1)2 )
which simplifies to 11(2c2 − 3c − 104) = 0 and this has integer solution
c = 8 which makes d = 7. The number N = 1287 is the only solution.
Also solved by Brad Meyer (student), Missouri State University, Spring-
field, MO; John Zerger, Catawba College, Salisbury, NC; Ioannis Sfikas,
Athens, Greece; Carl Libis, Columbia Southern University, Orange Beach,
AL; Abhijit Bhattacharjee (student), Banaras Hindu University, India; Cal
Poly Pomona Problem Solving Group, Pomona, CA; Jeremiah Bartz, Uni-
versity of North Dakota, Grand Forks, ND; and the proposer.
⇔ 16a2 b2 (1 − b2 )2 ≤ a2 (1 + b2 )4
⇔ a2 (b8 − 12b6 + 38b4 − 12b2 + 1) ≥ 0
⇔ a2 (b2 + 2b − 1)2 (b2 − 2b − 1)2 ≥ 0.
The last inequality is true so the first is true and then summing, we get the
desired result.
Also solved by Almas Bebirov, Baku State University, Lerik, Azerbaijan;
Ioannis Sfikas, Athens, Greece; and the proposer.
Spring 2019 27
a+b≥x+y
⇔ (a + b)2 ≥ (x + y)2
⇔ 2x2 + 2y 2 ≥ (x + y)2
⇔ 2x2 + 2y 2 ≥ x2 + 2xy + y 2
⇔ x2 − 2xy + y 2 ≥ 0
⇔ (x − y)2 ≥ 0,
so that
X
tan3 A + tan3 B ≥
r
X tan6 A + tan6 B
X 2 √
+ tan A tan B tan A tan B
28 The Pentagon
Furthermore, we have
x2 y2 z2
3x 3y 3z (y+2z)3
(z+2x)3 (x+2y)3
3 + 3 + = 3 + +
(y + 2z) (z + 2x) (x + 2y)3 x2 y2 z2
3
x y z
3 (y+2z) +
(z+2x) + x+2y
≥
3(x2 + y 2 + z 2 )
h i3
(x+y+z)2
3(xy+xz+zx)
≥
(x2 + y 2 + z 2 )
1
≥ .
xy + xz + zx
Also solved by Ioannis Sfikas, Athens, Greece; Cal Poly Pomona Problem
Solving Group, Pomona, CA; John Zerger, Catawba College, Salisbury,
NC; and the proposer.
(n + 1)2 n2
L = lim √ − √
n→∞ n+1
an + 1 n
an
(n+1)2 n2
ln √ ln √
= lim e n+1 an +1 −e n an
n→∞
n2
n2 (n+1)2
ln √ ln √
= lim e n an
e n+1 an +1 − ln √ −1
n→∞ n
an
√
n (n+1)2 n a
ln √ · n2n
= lim √ ·n e n+1 an +1 −1 . (1)
n→∞ n an
Now
r
n n
nn
lim √ = lim
n→∞ n an n→∞ an
(n + 1)n+1 an
= lim · n
n→∞ an+1 n
(n + 1)! an n! (n + 1)n+1
= lim · · ·
n→∞ an+1 n! (n + 1)! nn
n
1 n+1
= lim · a · = e.
n→∞ a n
√ √
(n+1)2 n an n+1 n
an n+1
Let xn = √
n+1 a · n2 and note lim √
n+1 a · n · n = e· 1e ·1 = 1.
n+1 n→∞ n+1
Spring 2019 33
Thus
(eln xn − 1)
lim n(eln xn − 1) = lim n · ln xn
n→∞ n→∞ ln xn
= lim n ln xn = lim ln xnn
n→∞ n→∞
" #
1 2n an √
= lim ln 1 + · · n an+1
n→∞ n an+1
an (n + 1)! n! √
= lim ln e2 · · · · n an+1
n→∞ n! an+1 (n + 1)!
1 1
= lim ln e2 · a · · = ln e = 1. (2)
n→∞ a e
2 2
there are no solutions if a > b4 . If a = b4 , there are 2 solutions. Finally,
2
suppose a < b4 . Since both a and b are positive, b2 > b2 − 4a and by
√
taking square roots b > b2 − 4a and there are 4 solutions.
Also solved by Remus Florin Stanca, Ramnicu Valcea City, Romania; Ioan-
nis Sfikas, Athens, Greece; and the proposers.
Spring 2019 35
KAPPA MU EPSILON
Installation Report
Kentucky Gamma, Bellarmine University
Louisville, Kentucky
The Kentucky Gamma Chapter of Kappa Mu Epsilon was installed at 5:00
p.m. on April 23, 2019 at a ceremony held on the campus of Bellarmine
University in Louisville, Kentucky. The meeting was conducted by current
KME member, Dr. Anne Raymond. KME national president, Dr. Brian
Hollenbeck, served as the installing officer.
Six students and four faculty members were initiated as the charter mem-
bers of the Kentucky Gamma Chapter. The four faculty are Assistant
Professor of Mathematics Dr. Jen Miller, Associate Professors of Math-
ematics, Dr. Susan White and Dr. Daylene Zielinski, and Professor of
Mathematics, Dr. Mike Ackerman. The six students are Megan Alexan-
der, Jamey VanDyke, Philip Golden, Emily Barrett, Alyssa Wyman, and
Andrea Howard. The first officers of the chapter were installed: Megan
Alexander, President; Jamey VanDyke, Vice President; Philip Golden,
Secretary; Emily Barrett, Treasurer; Jen Miller, Corresponding Secretary;
and Anne Raymond, faculty sponsor.
Kentucky Gamma
Chapter News
Miranda Gazaferi, Joshua Glynn, Shannon Guiheen, Robin Kalder, Rebecca Lunt, Jonathan
Maldonado, Geoffrey May, Lydia Murphy, Emily Negron, Nicholas Sabia, Dajana Sejdiraj,
and Brittany Sitler.
FL Gamma – Southeastern University
Chapter President – Shane Coris; 63 Current Members; 3 New Members
Other Spring 2019 Officers: Kaitlyn Brett, Vice President; Elizabeth Berna-
towicz, Secretary; and Dr. Berhane Ghaim, Corresponding Secretary and
Faculty Sponsor.
Florida Gamma held its initiation ceremony on April 4, 2019. There were
three new initiates and with this the total membership of the chapter is 63.
GA Beta – Georgia College & State University
Corresponding Secretary – Rodica Cazacu; 7 New Members
New Initiates – Hanwen Chen, Justin Hockey, Emily Howe, Byung Rok Kim, Madison
Link, Courtney McDonald, and Virginia Oliver.
GA Epsilon – Wesleyan College
Corresponding Secretary – Dr. Joe Iskra; 4 New Members
New Initiates – Elizabeth F. Bender, Kali Elizabeth Goding, Melissa Jazmine Rey, and
Akshayaa Shrestha.
HI Alpha – Hawaii Pacific University
Chapter President – Petra Keiser; 20 Current Members; 13 New Members
Other Spring 2019 Officers: Alexxis De Lamere, Vice President; Tara
Davis, Corresponding Secretary and Faculty Sponsor.
We had an initiation dinner in March to initiate the 13 new members.
New Initiates – Gioia R. Aquino, Jeffery H. Bourna, Tara Davis, Jonathan DiVietro, Mhary
Grace C. de Francia, Maxime Gayte, Andrea Langeland, Daniel O. Mendoza Hermosillo,
Alicia Nawatani-Dias, Saskia Rechin, Mina Hany Sokar, Vince Sushima, and Michelle
Tubolino.
IA Alpha – University of Northern Iowa
Chapter President – Isaac Neppel; 25 Current Members; 2 New Members
Other Spring 2019 Officers: Jaclyn Miller, Vice President; Christopher
Merck, Secretary; Stephanie Peiffer, Treasurer; and Dr. Mark D. Ecker,
Corresponding Secretary and Faculty Sponsor.
Our first spring KME meeting was held on February 28, 2019 in Wright
Hall, where student member Christopher Merck presented his paper enti-
tled “State Domestic Product: What Actually Influences a State’s GDP’.
Our second meeting was held on April 4, 2019 in Wright Hall, where stu-
dent member Lincoln Fuhs talked about his undergraduate research paper
entitled “A Statistical Analysis of NBA Players: What Role Does Position
Play?”. Student member Hannah Larsen addressed the spring initiation
banquet on April 30, 2019 with her senior seminar project entitled “Fac-
tors that Affect Home Runs in MLB”. Our banquet was held at Godfather’s
Spring 2019 39
New Initiates – Amanda Ashton, Aisha Azhar, Hannah Campbell, Emily Garzon, Sarah
Hasnain, Hunter King, Keira Mull, and Uloaku Onwumelu.
MD Delta – Frostburg State University
Chapter President – Demetrick McDonald; 27 Current Members; 14 New
Members
Other Spring 2019 Officers: Braden Ebersole, Vice President; Jordan
Thomas, Secretary; Zach Kline, Treasurer; Mark Hughes, Corresponding
42 The Pentagon
meeting conducted some ice breakers to get acquainted with new attendees
and played the game MindTrap. KME held a book sale in from January
15 until January 17 to raise funds for their activities. On February 4, KME
held a mathematically inspired escape room. The game was organized
by KME board member Evan Miller. KME and Gamma Iota Sigma had
been in discussion for some time about a joint panel intended to give pro-
fessional advice to those majoring in mathematical sciences. This panel
came to fruition on February 19. The panel consisted of a mathematics
professor, a high school mathematics teacher, an actuary, two data scien-
tists, a current Ph.D. student, and the current mayor of Mount Pleasant
(who graduated with a mathematics major from CMU). There was a Sage-
Math/Python tutorial at the February 25 meeting. KME held a competition
amongst its members for a Pi Day T-shirt design. The winning design was
submitted by Jean Han. Shirts were sold in the department from March 12
until March 14. By the completion of the sale, the shirts were sold out. On
March 18, Olivia Walch (University of Michigan) gave a lecture entitled
“Math, Sleep, and Our Phones.” In her talk, Dr. Walch discussed the math-
ematics of sleep and circadian rhythms. On April Fools’ Day, KME hosted
a meeting on mathematics and magic. KME members raised money to sup-
port the “Special Olympics” event on CMU campus by selling medallions
in April 2018. The overall campaign took place from March 19 until May
5 in preparation for the games held May 31 to June 2. KME had a table set
up in the department selling medallions from April 9 until April 12. KME
held its 2019 initiation ceremony on April 14. Six new members were ini-
tiated into the society. Jordan Watts, Assistant Professor of Mathematics
at CMU, gave a talk entitled “Game of Bones: A Song of Aid and Explo-
ration”. Mathematical Jeopardy! was the name of the game on April 15.
Math-a-palooza was again co-organized by KME with the AMS Graduate
Student Chapter. The Spring 2019 event was held on April 26.
44 The Pentagon
New Initiates – Lauren Hutter, Luke Kupari, Wenjie Li, Evan Miller, Bridget Parker, and
Antonia Sundeen.
MI Delta – Hillsdale College
Chapter President – Gill West; 62 Current Members; 13 New Members
Other Spring 2019 Officers: Abigail Trouwborst, Vice President; Emma
Clifton, Secretary; Ben Becker, Treasurer; and Dr. David Gaebler, Corre-
sponding Secretary and Faculty Sponsor.
The Michigan Delta chapter inaugurated 13 members on February 26,
2019. The initiation ceremony was accompanied by a math talk by Dr.
David Gaebler on “Generatingfunctionology: Bridging the Gap Between
the Continuous and the Discrete.”
MI Epsilon – Kettering University
Chapter President – Danny Boyle; 32 Current Members; 17 New Members
Other Spring 2019 Officers: Rebecca Abbott McCune, Vice President;
Makayla Carpenter, Secretary; Lindsey Malson, Treasurer; Boyan Dim-
itrov, Corresponding Secretary; and Dr. Matt Causley, Faculty Sponsor.
Kettering has now successfully re-established both its A and B-section
chapters of KME. We were very pleased to add 17 members to B-section
Spring 2019 45
last fall, and downright elated to initiate new 32 members this spring! Fu-
ture events that are planned include social mixers, tutoring high school stu-
dents in the greater Flint community, and perhaps a T-shirt design to raise
funds for the society. The Winter and Spring terms brought lots of excite-
ment into our Mathematics life. First of all, our Actuarial program was
granted the Advanced Curriculum designation by the Society of Actuaries
thanks to the work of our colleague Hee Seok Nam. He joined Ketter-
ing 4 years ago, and his job is getting the highest ratings. Next I would
note the inclusion of the “Islands” virtual environment in our Statistics
education program. This program is supported by Terrell grant through
our Center of Excellence in Teaching and Learning (CETL) and was ini-
tiated by our Department Head, Dr. Leszek Gawarecki). The “Islands”
offer a holistic experience for students: they transition through all stages
of a real statistical study, from planning, data collection and organization,
to formulating and testing hypotheses and drawing conclusions and mak-
ing recommendations. Final reports are in the form of class presentations.
Students are excited about the new “toy“. We intend to present our re-
sults at the next Lilly conference, the QuadPod Symposium and maybe
at some of the KME traditional sessions. Another important and signifi-
cant outcome is the nomination of our student and KME President, Peter
Morell, for the Presidential Medal at the upcoming Graduation, June 15.
Peter is completing his Kettering education with remarkable results: he
received the Applied Mathematics Student Research Award in 2015 as a
sophomore for his research on fast approximations of the Euler Constant
“e”, in collaboration with our current faculty sponsor, Dr. Matt Causley.
Peter is the President of our KME Kettering chapter of Section B. We are
glad for his achievements. Wish him a good luck in his future professional
life. Sorry to see Peter leaving. Another deserving news is that our col-
league and longtime KME member, professor Ilya Kudish retired. He is
Professor Emeritus at Kettering, one of the best in Tribology research, the
NFL grant recipient years ago, on the wall of fame posted and valuable
applied mathematics member. We are sorry to see him leaving, but wish
Ilya a happy retirement and further best in his research endeavors. I finish
my report with a photo of our B-section Kettering KME Michigan Epsilon
student members.
46 The Pentagon
Lake, Janie Leathers, Sabrina Otzenberger, Samuel Priddy, Petra Schaffer, Abbey Sorrell,
and Bailey Stevens.
MO Theta – Evangel University
Chapter President – Heather Culbertson; 17 Current Members; 5 New
Members
Other Spring 2019 Officers: Jacob Crews, Vice President; and Don Tosh,
Corresponding Secretary and Faculty Sponsor.
Meetings were held monthly. In February we initiated 5 new members
and elected new officers. In April Dr. Tosh, Dianne Twigger and five
students attended the national convention at Frostburg State University in
Maryland, where one student, Rebekah Chase, won an award for the paper
she presented. Also in April we had our end-of-year meeting, where honor
cords were given to graduating members.
New Initiates – Jonathan Dasal, Cammi Kjetland, Riley Nelson, Trey Shupp, and Jonas
Taylor.
MO Iota – Missouri Southern State University
Corresponding Secretary – Amila Appuhamy; 4 New Members
New Initiates – Trevor Hailey, Jacob Lett, Kim Richardson, and Justin Sanders.
MO Kappa – Drury University
Corresponding Secretary – Dr. Carol Browning; 8 New Members
New Initiates – Claire Allen, Brendan Bena, Lily Brockus, Riley Gatten, Benjamin High,
Sarah Lester, Michelle Medina, and Mark Wood.
MO Nu–– Columbia College
Corresponding Secretary – Kenny Felts; 3 Current Members; 5 New Mem-
bers
New Initiates – Karissa Brickey, Mark Dierker, Daymond Dollens, Bibek Poudel, and Alix
Ray.
MO Xi – William Woods University
Chapter President – Briley Browning; 9 Current Members; 4 New Mem-
bers
Other Spring 2019 Officers: Mikayla Laburay, Vice President; and Dr.
Chris Schneider, Corresponding Secretary and Faculty Sponsor.
The Missouri Xi chapter initiated four new members during the Spring
2019 ceremony: Mackenzie Hawkins, Aurora Henriksen, Connor Poul-
son, and Maggie Wieberg. They were joined by returning members Briley
Browning and Mikayla Laburay, as well as faculty members Chris Schnei-
der (sponsor), Julie Davenport, and Raymond Hune. Refreshments and
fellowship were enjoyed by all after the ceremony.
New Initiates – Mackenzie Breanna Hawkins, Aurora Lucie Henriksen, Connor William
48 The Pentagon
bers
Other Spring 2019 Officers: Alessandro Tripoli, Vice President; Amun
Patel, Secretary; Megan Frey and Paul Tredwell, Co-Treasurers; and Dr.
Corbett Redden, Corresponding Secretary and Faculty Sponsor.
Two members of the NY Lambda chapter attended this year’s KME Na-
tional Conference, and one of the students (Sandy Hussain) gave a talk.
Our chapter also held its annual banquet and initiation ceremony on April
7, 2019.
New Initiates – Abdullah Alatawi, Trky Alhsmy, Fatimah Alshahrani, Alexa Armenti,
Charlotte Beshers, Toby Guan, Sandy Hussain, Dilek Su Kucuk, Thomas Reid, Dana
Reynolds, Chad Tomassetti, Courtney VanRoten, and Jiarui Zhang.
NY Mu – St. Thomas Aquinas College
Corresponding Secretary – Dr. Heather A. Rave; 7 New Members
New Initiates – Julia Marie Foto, Thomas John Holmes, Abagaile Therese Kimbrell, Re-
becca MacLeod, Alessandro J Molinas, Morgan Helena Santora, and Chae H. Yu.
NY Nu – Hartwick College
Corresponding Secretary – Gerald Hunsberger; 1 New Member
New Initiates – Jack Philp.
NY Xi – Buffalo State College
Corresponding Secretary – Jane Cushman; 17 Members
New Initiates – Ahmed Akbar, Karissa Allen, Stephen Bewlay, Veronique Budd-Nicholas,
Zachary Colson, Breanna Cook, Abdulkhaliq Edan, Alexander Furtney, Hannah Harsh-
berger, Kyle Hunn, Alan Pomietlarz, Victoria Rigler, David Simmons, Michele Schultz,
Carmen Terrell, Allison Torsey, amd Marcus Webb.
NY Pi – Mount Saint Mary College
Corresponding Secretary – Lee Fothergill; 4 New Members
New Initiates – Charles Benfer, Stephanie Ann Brown, Alexa Garbarino, and Sophia M.
Reinhardt.
NY Rho – Molloy College
Corresponding Secretary – Manyiu Tse and Deborah Upton; 13 New Mem-
bers
New Initiates – Christopher Arata, Kelsey Burke, Samantha Fischetto, Kathryn Gibson,
Christina Labita, Alissa Leone, Heather McAllister, John Pascuzzi, Mia Picone, Frank
Rossetti, John Rotchford, Jamie Sindicic, and Sophia Valkiv.
NY Sigma – College of Mount Saint Vincent
Corresponding Secretary – Peter Luthy; 15 New Members
New Initiates – Maria Aceituno, Daniel Amarante, Keith Carreon, Nicole Desouza, Savan-
nah George, Weily Lang, Peter Luthy, Jose Mendoza, Andrea Minei, Victor Miroshnikov,
Amir Niknejad, Danielle Quaranto, Sean Rice, Janet Rollins, and Lauren Tate.
OH Gamma – Baldwin Wallace University
Chapter President – Corrinne Horvath; 50 Current Members; 15 New
Spring 2019 51
Members
Other Spring 2019 Officers: Katherine Wohlford, Vice President; Thomas
Rector, Secretary; David Calvis, Corresponding Secretary and Faculty
Sponsor.
On March 4, we received 15 new initiates into membership. Our officers
for 2019-20 will be President: Sydney Leither, Vice-President: Jessica
Blakley, and Secretary: Jeremiah Allis.
New Initiates – Miriam Alramzi, Jessica Blakley, Christopher Bradshaw, Zachary Egler,
Sujatha Gaddamanugu, Cameron Krivanek, Sydney Leither, Sarah Massey, Mayre New-
comb, Samantha Pruett, Harrison Rouse, Mary Schentur, Ethan Slutzky, Hannah Timony,
and Devon Tingley.
OH Zeta – Muskingum University
Corresponding Secretary – Richard Daquila; 5 New Members
New Initiates – Caitlyn Christman, Emily Ellyson, Jocelyn McBurney-Buell, Paige Mor-
row, and Gabriel Weeldreyer.
OH Eta – Ohio Northern University
Corresponding Secretary – Ryan Rahrig; 1 New Member
New Initiates – Bryan Peck.
OH Theta – Capital University
Chapter President – Krista Taulker; 15 Current Members; 6 New Members
Other Spring 2019 Officers: Kathryn Stahl, Vice President; Taylor Mani-
vanh, Secretary; Jarrett Williams, Treasurer; Paula Federico, Correspond-
ing Secretary; and Jon Stadler, Faculty Sponsor.
This semester our Chapter of KME hosted a campus wide celebration for
Pi Day on March 14, 2019. The event consisted of giving mini pies and
coffee to students entering our Science Building and talk given by Dr.
Stadler about Math and Juggling. Students also designed a Pi Day t-shirt
for the event. Funding for this event was provided by the University Pres-
ident’s office.
This year’s initiation ceremony took place on Sunday, April 7th and we
welcomed 6 new members. Dr. Judy Holdener from Kenyon College give
52 The Pentagon
At the end of April, students met and selected officers for the next aca-
demic year. The officers for next academic year will be: Taylor Manivanh
– President, Jarrett Williams – Treasurer, Colin Swisher – Vice President,
and Josh Wissman – Secretary.
New Initiates – Emma Cary, Meredith Cox, Sonia Ezenwajiaku, Emily Singer, Colin Swisher,
and Joshua Wissman.
PA Alpha – Westminster College
Corresponding Secretary – Pamela Richardson; 7 New Members
New Initiates – Jessica Booher, Andrius Burnelis, Elaina Chapnell, Hannah Fell, Natalie
Horstman, Mackenzie Smith, and Emily Wilson.
PA Epsilon – Kutztown University
Corresponding Secretary – Dr. Lyn McQuaid; 13 New Members
New Initiates – Safal Raut Chhetri, Angela De Cicco, Laura Durdon, Zachary Fike, Chris-
tine Holland, Karissa Jean, Jenna Kanyak, Georgia Lobb, Vanessa Maybruck, Abby Moyer,
Isaac Reiter, Alexander Swift, and Xinyi To.
PA Theta – Susquehanna University
Corresponding Secretary – Kenneth Brakke; 14 New Members
New Initiates – Sana Ahmed, Jessica Bolger, Milo J. Brooking, Jordan E. Dreibelbis,
Amanda E. Grosz, Jakob H. Hutter, Kyle C. Liedtka, Bryce D. Natter, Tyler J. Ogurcak,
Christopher J. Petraskie, Abigail L. Pihanich, Ian H. Reish, Paige Sherman, and Christian
A. Wirt.
PA Iota – Shippensburg University
Chapter President – Rebecca Feaser; 761 Current Members; 1 New Mem-
Spring 2019 53
ber
Other Spring 2019 Officers: Josue Murillo, Vice President; Conner Chap-
man, Secretary; Crystal Evans, Treasurer; Dr. Paul Taylor, Corresponding
Secretary and Faculty Sponsor.
PA Kappa – Holy Family University
Chapter Co-Presidents – Melissa Cahill & Tuyen Le; 4 Current Members;
1 New Member
Other Spring 2019 Officer: Sister Marcella Louise Wallowicz CSFN, PhD,
Corresponding Secretary and Faculty Sponsor.
The PA Kappa Chapter held its annual initation ceremony on Friday, April
5, 2019. Kaleen Harrigan, a middle-level science and math major, was
initiated as the newest member of the chapter.
New Initiates – Kaleen Harrigan.
PA Lambda -– Bloomsburg University
Corresponding Secretary – Eric B. Kahn; 6 New Members
New Initiates – Kaleb Lansberry, Jordan Marlow, Saliou Ndiaye, Walter Nelson, Taylor
Runkle, and Zachary Swanger.
PA Mu – Saint Francis University
Chapter President – Arlan (AJ) Zelenky; 61 Current Members; 11 New
Members
Other Spring 2019 Officers: Vanessa Valovage, Vice President; Ry Gal-
lagher, Secretary; Hannah Boyd, Treasurer; Dr. Brendon LaBuz, Corre-
sponding Secretary and Faculty Sponsor.
The Pennsylvania Mu Chapter of Kappa Mu Epsilon held their initiation
ceremony on Tuesday, February 26, 2019. The evening began with a wel-
come from outgoing corresponding secretary Dr. Peter Skoner followed
by a prayer by chapter vice president Vanessa Valovage. After dinner,
Faculty Sponsor Dr. Brendon LaBuz presented “To Be Irrational” which
culminated with Geoffrey C. Berresford’s simple proof that the square root
of any integer that is not a perfect square is irrational. The highlight of the
evening was the initiation of our eleven new members. As usual our KME
chapter served free pie to the campus community on π day. Two faculty
members and two student members attended the National Convention at
Frostburg State University.
New Initiates – Ian Gabig, Michael Gallagher, Nicholas Hofer, Danielle Humbert, Kari
Lagan, Nathan Moore, Taylor Nesmith, Mackenna Ray, Teresa Reid, Nathan Thompson,
54 The Pentagon
Evan Suter.
RI Beta – Bryant University
Chapter President – Danica Butler; 26 Current Members; 16 New Mem-
bers
Other Spring 2019 Officers: Tyler Talbot, Vice President; Jacob Min-
gola, Secretary; Anthony Distefano, Treasurer; John Quinn, Correspond-
ing Secretary; and Alan Olinsky, Faculty Sponsor.
We held our annual Math Honors ceremony at Bryant University on Thurs-
day, April 26, 2019. We initiated 16 new members into the RI Beta Chapter
of KME including 15 students and 1 faculty member.
SC Gamma – Winthrop University
Corresponding Secretary – Dr. Jessie Hamm; 3 New Members
New Initiates – Claire Berchtold, Darien Nguyen, and Nolan Worthy.
SC Epsilon – Francis Marion University
Corresponding Secretary – Dr. Daniel Scofield; 14 New Members
New Initiates – Jonathan G. Britt, Sierra R. Cartano, Gregory Ivan Dungan, Johanna Hoffmeyer
Gibson, Michelle R. Greene, Victoria A. Hicks, Edward L. Hubbard, Colby J. Jackson,
Charles E. Jeffcoat, III, Johnathan S. Larymore, Kaitlyn E. Lowry, Zachary R. Middleton,
Taylor D. Watson, and Corbin E. Witt.
TN Alpha – Tennessee Tech University
Corresponding Secretary – Barry Elliott; 2 New Members
New Initiates – Cory Stephenson and Yixing Wang.
TN Beta – East Tennessee State University
Corresponding Secretary – Rodney Keaton; 14 New Members
New Initiates – Amelia Bernard, Brianna Cardenal, Logan Carmody, Rebecca Eubanks,
Taylor Hutchinsonk, Scarlett Knott, Richard McDonald, Amanda McKinney, Ethan Nus-
sio, Eyan Nussio, Anna Salyer, Hannah Schmidt, Mariah Taylor, and Bailey Yearout.
TN Gamma – Union University
Chapter President – Yoo Jin (Ashley) Moon; 5 New Members
Other Spring 2019 Officers: Cole LeMahieu, Vice President; Jenna Dula,
Secretary and Treasurer; Josie Carrier, Webmaster and Historian; Bryan
Dawson, Corresponding Secretary; and Matt Lunsford, Faculty Sponsor.
TN Gamma held its annual initiation banquet at the Old Country Store on
April 29, 2019. Former chapter member Vicki Searl, currently a graduate
student at the University of Louisville, was the speaker.
New Initiates – Emory Craft, Michael Drury, Spencer Alan McCloy, Stuart Milam, and
Ben Noland.
TN Delta – Carson-Newman University
Chapter President – Branda Moore; 14 Current Members; 3 New Mem-
bers
Other Spring 2019 Officers: Kaylib Powell, Vice President; and Kenneth
56 The Pentagon
We met with one of the artists, Margaret Kepner, who gave us a person-
alized tour of the exhibit and talked about the mathematics behind some
of her pieces there. On May 4, 2019, some of our members attended the
National Math Festival in Washington, DC. We volunteered with the Asso-
ciation for Women in Mathematics, The Bridges Organization, and Ithaca
College’s Geometric Balloon Bending.
WI Alpha – Mount Mary University
Corresponding Secretary – Jane F. St. Peter; 4 Current Members; 3 New
Members
The WI Alpha chapter will have a new corresponding secretary, Sherrie
Serros, starting in the fall, due to the retirement of Jane St. Peter.
New Initiates – Jeannette Ingabire, Judith Ifarinde-Lay, and Sherrie Serros.
WV Alpha – Bethany College
Chapter President – Jacob D. Stemmerich; 16 Current Members; 4 New
Members
Other Spring 2019 Officers: Rachel E. Gantzer, Vice President; Joseph S.
Sawyer, Secretary/Treasurer; and Dr. Adam C. Fletcher, Corresponding
Secretary and Faculty Sponsor.
It has been a busy academic year for the West Virginia Alpha chapter!
In the fall semester, several members of the chapter (including two of
its officers) traveled with the Mathematics and Computer Science Club
and the “HackBethany” cybersecurity club to SecureWV/Hack3rcon in
Charleston, West Virginia. The chapter helped the club host the thirteenth
annual Math/Science Day on campus this spring, and sponsored Bethany
College’s initiation ceremony of another new member into the Upsilon Pi
Epsilon international computing sciences honor society in April, as well
as welcoming four new members into its own ranks. One member of the
chapter accompanied three members of the Math/Computer Science Club
to the national biennial convention in Frostburg, Maryland, where mem-
bers of the chapter served on the Awards and Resolutions committees.
58 The Pentagon