+x+xHello there,
In my experiment a word list for encoding is presented to my subjects. In the following, they will be confronted with a recognition task-list (each word is presented by itself), consisting of "old" words (which have been in the list presented before) and "new" words (which the participants have not seen before"). The participants will have to press the space key to decide whether the word is "old" or "new".
Here it is important that not only the "old" words are extracted from a pool, but also the "new" words. The best solution would be that they come from the same pool, meaning that a word that is "old" for Person A, might be random "new" for Person "A".
Thanks for your help, much appreciated!
Designs like this have been discussed here a number of times. See e.g,
https://www.millisecond.com/forums/Topic17069.aspx Dear Dave, I am sorry but these discussion do not really help me in the moment.
The special thing here is that, in the encoding task every subject sees different words. How can I ensure now that in the recognition task the recently presented words appear and also new words? Furthermore I have to make sure, that words which a correctly judged as new or old are also recognised as correct from Inquisit.
<item AlleWörter>
/ 1 = "Heimat"
/ 2 = "Humor"
/ 3 = "Reise"
/ 4 = "Sonne"
/ 5 = "Urlaub"
/ 6 = "Treue"
/ 7 = "Party"
/ 8 = "Advent"
/ 9 = "Bedarf"
/ 10 = "Länge"
/ 11 = "Kader"
/ 12 = "Marke"
/ 13 = "Strecke"
/ 14 = "Runde"
/ 15 = "Handel"
/ 16 = "Finger"
/ 17 = "Mörder"
/ 18 = "Leiche"
/ 19 = "Waffe"
/ 20 = "Armut"
/ 21 = "Panik"
/ 22 = "Falle"
/ 23 = "Verlust"
/ 24 = "Unfall"
</item>
<text BekannteWords>
/fontstyle = ("Arial", 5%, true, false, false, false, 5, 0)
/items = AlleWörter
/position=(50%,50%)
</text>
<text NeueWords>
/fontstyle = ("Arial", 5%, true, false, false, false, 5, 0)
/items = AlleWörter
/position=(50%,50%)
</text>
one version with BekannteWord: correct response = f, neue word: correct response = j; second version the other way around
<trial BekannteWordsVersion1>
/ stimulusframes = [1-24 = noreplace(BekannteWords)]
/inputdevice = keyboard
/ validresponse = ("F", "J")
/ correctresponse = ("F")
</trial>
<trial NeueWordsVersion1>
/ stimulusframes = [1-24 = noreplace(NeueWords)]
/inputdevice = keyboard
/ validresponse = ("F", "J")
/ correctresponse = ("J")
</trial>
<trial BekannteWordsVersion2>
/ stimulusframes = [1-24 = noreplace(BekannteWords)]
/inputdevice = keyboard
/ validresponse = ("F", "J")
/ correctresponse = ("J")
</trial>
<trial NeueWordsVersion2>
/ stimulusframes = [1-24 = noreplace(NeueWords)]
/inputdevice = keyboard
/ validresponse = ("F", "J")
/ correctresponse = ("F")
</trial>
double check whether amount of trails is correct!
<block AbrufWordsInstructVersion1>
/trials = [1=InstruktionAbrufVersion1]
</block>
<block AbrufWordsVersion1>
/bgstim = (ButtonBekanntVersion1, ButtonNeuVersion1)
/trials = [1-15 = noreplace(BekannteWordsVersion1, BekannteWordsVersion1, BekannteWordsVersion1, BekannteWordsVersion1, BekannteWordsVersion1, BekannteWordsVersion1, BekannteWordsVersion1, BekannteWordsVersion1, BekannteWordsVersion1,
NeueWordsVersion1, NeueWordsVersion1, NeueWordsVersion1, NeueWordsVersion1, NeueWordsVersion1, NeueWordsVersion1)]
</block>
double check whether amount of trails is correct!
<block AbrufWordsInstructVersion2>
/trials = [1 = InstruktionAbrufVersion2]
</block>
<block AbrufWordsVersion2>
/bgstim = (ButtonBekanntVersion2, ButtonNeuVersion2)
/trials = [1-15 = noreplace(BekannteWordsVersion2, BekannteWordsVersion2, BekannteWordsVersion2, BekannteWordsVersion2, BekannteWordsVersion2, BekannteWordsVersion2, BekannteWordsVersion2, BekannteWordsVersion2, BekannteWordsVersion2,
NeueWordsVersion2, NeueWordsVersion2, NeueWordsVersion2, NeueWordsVersion2, NeueWordsVersion2, NeueWordsVersion2)]
Thank you so much for your help, I am desperately looking for any advice.