Hi,
with FormCalc you can easily calculate dates.
In the exit event of you date field, add a script like this
if ($.isNull eq 0) then
var nDate = Date2Num($.formattedValue, "MM/DD/YYYY")
Mon = Num2Date(nDate - 6, "EEE D")
Tue = Num2Date(nDate - 5, "EEE D")
Wed = Num2Date(nDate - 4, "EEE D")
; and so on ...
endif