-1

im not sure if i say it right.

my question is how can i get the COST of an item if then given is the Net and the GST?

Carl
  • 7,538
  • 1
  • 40
  • 64
XBasic3000
  • 3,418
  • 5
  • 46
  • 91

1 Answers1

2

The basic equation is:

net = cost + (gst * cost) = cost * (1.0 + gst)

(with gst expressed as a decimal)

Therefore by algebra (dividing both sides by 1.0 + gst) you have:

cost = net / (1.0 + gst)
QuantumMechanic
  • 13,795
  • 4
  • 45
  • 66