Table of Values
- To: mathgroup at smc.vnet.net
- Subject: [mg109544] Table of Values
- From: Nicholas Kormanik <nkormanik at gmail.com>
- Date: Tue, 4 May 2010 06:30:47 -0400 (EDT)
The Mathematica mini-program below has been useful for solving for x,
given the other inputs. It is analogous to a single-shot rifle:
x =.
tradecomission := 9.99
feepercontract := .75
pricepercontract := .73
numbercontracts := x
totalcost := 8484
Solve[numbercontracts == (totalcost -
tradecomission)/(pricepercontract*100 + feepercontract), x]
What I'd like to somehow obtain now, however, is a rifle with a clip
or magazine --- in other words, a TABLE of values. Below would be an
example of such a table:
pricepercontract numbercontracts
.73 114
.74 113
.75 111
.76 110
.77 108
.78 107
.79 106
.80 104
.81 103
.82 102
.83 101
.84 99
Does anyone know if there is a fairly easy and straightforward way of
setting this up?
Thanks,
Nicholas