<div>how do I formulate this expression in racket?</div><div><br></div><div>(n*2+ 300) / (13n)</div><div><br></div><div>I got the first part done</div><div><br></div><div><div>(define (f n)</div><div>( +  ( * n n ) 300))</div>
</div><div><br></div><div>So lets say I pick 5. </div><div><br></div><div>(f 5) would give me 325. </div><div><br></div><div>But how would I do the second part- dividing it by (13n)?</div>