Goodman claims that induction cannot be justified, as the observation of a given object at a specific point in time (t0) leads to the confirmation of contradicting hypotheses. To support his claim, he brings the following statements forward:

  • Hypothesis 0: an object is green when it's observed at t0 (and afterwards stays green).
  • Hypothesis 1: an object is grue when it's observed at t0 (meaning that it's green during observation, but afterwards will change its colour to red). If we now observe an object at t0, both H0 and H1 are supported, even though they exclude each other in their predictions about the future. So, he essentially says that we can't predict the future by observing the present.

However, I argue that that's exactly what Hume meant when he said that the sun rising tomorrow doesn't allow for any prediction about what will happen afterwards. It could be that the sun will rise blinking, fading, or not at all. So the only difference between Goodman and Hume's argument is that Goodman gives these predictions their own adjectives. To illustrate that, one could describe Hume's problem with sunrises in a Goodman way of giving the different hypotheses words:

  • Hypothesis 0: the sun is a reliable object when it rises tomorrow (and will rise the next day).
  • Hypothesis 1: the sun is an unreliable object when it rises tomorrow, but won't rise the next day. Now, observing the sun rising tomorrow will confirm the sun as a reliable and as an unreliable object at the same time. Therefore, Goodmans argument seems to me as a complicated way of explaining Hume.

That's why I don't consider Goodmans New Riddle of Induction as new, or am I missing something? And do you know, per chance, an article that argues in this way?

 

The idea is to search for the highest number, and then to create an 2d-Array, whose length equals the highest number. Afterwards all items of the unsorted array are placed in the sorted array into the place with the index that equals their number.

So every 0 is placed into the first array of the sorted array, every 2 is placed in the third array of the sorted array, every highest number is placed in the last array of the sorted array.

In the end an array that may look like this: [[0,0],[],[1],[],[2], [4,4,4]] will be compiled into an proper 1-d array (in this case: [0,0,1,2,4,4,4]).

Here's the python code:

import time
import numpy as np

start = time.time()

def proto_sort(arr):
    highest_value = 0
    for item in arr:
        if item > highest_value:
            highest_value = item
    sorted_arr = [[]] * (highest_value + 1)
    for num in arr:
        sorted_arr[num] = sorted_arr[num] + [num]

    output_arr = [None] * len(arr)
    num = 0
    for item in sorted_arr:
        for j in item:
            if j != None:
                output_arr[num] = j
                num += 1



# Example usage
arr = []
for i in range(100):
    arr.append(np.random.randint(0, 100))
sorted_arr = proto_sort(arr)
end = time.time()
print(end - start)

However at least in my tests, counting sort is always better (I just wanted to share the idea) (Edits for clarification)

[–] 7 points 3 months ago

Das stimmt, sie ist auf jeden Fall ein Grund zur Hoffnung. Trotzdem denke ich, dass es vor allem die zukünftigen Investitionen des Staates sind, die über das Schicksal des Schienennetzes bestimmen werden. Ausbleibende Finanzierung (und Priorisierung) durch die Politik erscheint mir eine plausiblere Erklärung zu sein, als dass ihre Vorgänger extrem inkompetent oder böswillig gewesen wären. Grad ein Blick nach Österreich und die Schweiz legt nahe, dass es einfach der politische Wille ist, der in Deutschland gefehlt hat und das leider Gottes immer noch ein Stück weit tut.

  • source
  • parent
  • context
  • [–] [S] 11 points 3 months ago

    Da ham wir einen Standortwettbewerb mit den USA & China, Abhängigkeit vom Öl und den Klimawandel und trotzdem bremsen die CSU und FW bei der Bahn (klar zig weitere Tunnel wären noch besser für die Anwohner, aber ich bezweifle, dass das etliche Milliarden und Jahre wert ist)...

  • source
  •  

    Mein Studi-Deutschlandticket wurde (ohne das ich es bemerkt hatte) in den letzten Wochen einfach so auf eine Fahrkarte für Naldo heruntergestuft - zum Glück wusste der Schaffner Bescheid, dass dies ein häufiges Problem in den letzten zwei Wochen ist. Also eine kleine Warnung an alle, die vorhaben die Region zu verlassen, vorher nochmal nachzuschauen. Weiß jemand mehr?

    [–] 1 point 4 months ago (1 child)

    Auf dem Händi habe ich ablenkende Seiten und Programme blockiert. Das funktioniert auch ganz gut, vor allem wenn man sich nach zwei drei Wochen es sich mental abgewöhnt hat die "Sozialen Medien" zu besuchen zu wollen.

    Auf dem Computer finde ich es wiederum schwieriger, habt ihr da Tipps (was mir geholfen hat war die Startseite von z.B. Reddit oder Nachrichtenportale zu blockieren mit uBlock Origin, sodass ich falls nötig über die Suchmaschine doch noch Zugriff auf die Infos habe -> evtl. Ausweitung auf Feddit)?

  • source
  • [–] 3 points 5 months ago

    I agree that these companies are mostly not saints, but having them on European ground means the current US administration doesn't get more taxpayer money. Even more importantly, here in the EU the data regulation is more strict and the US won't be able to freeze our accounts as Trump did with the International Criminal Court.

  • source
  • parent
  • context
  • [–] [S] 7 points 6 months ago

    Das Vorgehen gegen Kuba scheint mir der bedeutendste Faktor für die Entführung Maduros zu sein (Marco Rubio als Außenminister der USA hat exilkubanische Wurzeln und hat schon lange angekündigt, dass er die Regierung in Kuba zu Fall bringen will).

    Die ökonomischen Interessen werden sicher nicht irrelevant gewesen sein, sind aber denke ich eher klein vor allem, da es Jahre brauchen wird, die Infrastruktur zu errichten.

  • source
  • [–] 1 point 6 months ago

    That's a fair point but fairphone also tries to manufacture the smartphones more sustainable than the other manufacturers (unfortunately I can't tell how big that difference really is). Nevertheless you might be right in that it's maybe more effective to buy another phone and fund f.e. /e/OS directly.

  • source
  • parent
  • context
  • view more: next ›