According to the source for acts-as-taggable-on, you can use the :exclude option:
##
# Return a scope of objects that are tagged with the specified tags.
#
# @param tags The tags that we want to query for
# @param [Hash] options A hash of options to alter you query:
# * <tt>:exclude</tt> - if set to true, return objects that are *NOT* tagged with the specified tags
# * <tt>:any</tt> - if set to true, return objects that are tagged with *ANY* of the specified tags
# * <tt>:match_all</tt> - if set to true, return objects that are *ONLY* tagged with the specified tags
# * <tt>:owned_by</tt> - return objects that are *ONLY* owned by the owner
So in your instance, just do:
Article.tagged_with("tag", :exclude => true)
EDIT: Just realized you asked for articles without any tags, in which case, you'll need to supply the list of all your tags to the method:
Article.tagged_with(Tag.all.map(&:to_s), :exclude => true)