# find the price that maximizes the profit
#     set max profit to very small number (like 0)
#     also make variable for ticket price associated with max
#     for loop over a range of values
#        get new profit value from ticketProfit()
#        if new profit > max profit:
#            max profit = new profit
#            max profit price = new ticket price
