# -*- coding: utf-8 -*-
"""
Created on Mon Aug  1 14:10:53 2022

@author: Chris
Lab 1 Question 7
"""
import numpy as np
import matplotlib.pyplot as plt

x = np.logspace(-3,1,100)
f = 4**(2*x)
plt.loglog(x,f)
plt.xlabel('x')
plt.ylabel('f')

plt.show()
input()
plt.figure()

x1 = np.linspace(0.001,10,100)
f1 = 4**(2*x)
plt.plot(x,f)
plt.xlabel('x')
plt.ylabel('f')


